~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to mapiproxy/services/ocsmanager/production.ini

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# ocsmanager - Pylons development environment configuration
 
3
#
 
4
# The %(here)s variable will be replaced with the parent directory of this file
 
5
#
 
6
[DEFAULT]
 
7
debug = true
 
8
# Uncomment and replace with the address which should receive any error reports
 
9
#email_to = you@yourdomain.com
 
10
smtp_server = localhost
 
11
error_email_from = paste@localhost
 
12
 
 
13
[server:main]
 
14
use = egg:Paste#http
 
15
host = 127.0.0.1
 
16
port = 5000
 
17
 
 
18
[app:main]
 
19
use = egg:ocsmanager
 
20
full_stack = true
 
21
static_files = true
 
22
 
 
23
cache_dir = %(here)s/data
 
24
beaker.session.key = ocsmanager
 
25
beaker.session.secret = somesecret
 
26
 
 
27
# If you'd like to fine-tune the individual locations of the cache data dirs
 
28
# for the Cache data, or the Session saves, un-comment the desired settings
 
29
# here:
 
30
#beaker.cache.data_dir = %(here)s/data/cache
 
31
#beaker.session.data_dir = %(here)s/data/sessions
 
32
 
 
33
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
 
34
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
 
35
# execute malicious code after an exception is raised.
 
36
set debug = false
 
37
 
 
38
 
 
39
# Logging configuration
 
40
[loggers]
 
41
keys = root, routes, ocsmanager
 
42
 
 
43
[handlers]
 
44
keys = console
 
45
 
 
46
[formatters]
 
47
keys = generic
 
48
 
 
49
[logger_root]
 
50
level = INFO
 
51
handlers = console
 
52
 
 
53
[logger_routes]
 
54
level = INFO
 
55
handlers =
 
56
qualname = routes.middleware
 
57
# "level = DEBUG" logs the route matched and routing variables.
 
58
 
 
59
[logger_ocsmanager]
 
60
level = DEBUG
 
61
handlers =
 
62
qualname = ocsmanager
 
63
 
 
64
[handler_console]
 
65
class = StreamHandler
 
66
args = (sys.stderr,)
 
67
level = NOTSET
 
68
formatter = generic
 
69
 
 
70
[formatter_generic]
 
71
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] [%(threadName)s] %(message)s
 
72
datefmt = %H:%M:%S