-
Notifications
You must be signed in to change notification settings - Fork 5
/
production.ini
80 lines (64 loc) · 1.75 KB
/
production.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
###
# app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = egg:caramel
# Point the following two settings on where you want your CA certificate & Key to live
ca.cert = /etc/pki/tls/certs/ca.example.com.cert
ca.key = /etc/pki/tls/private/ca.example.com.key
# This causes all certs to be backdated to the age of the start cert.
# This is an ugly workaround for our embedded systems that lack RTC.
backdate = False
# We use 3 day periods
lifetime.short = 72
# Long term certs are for ~1 month
lifetime.long = 729
# Change this to match your database
# http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html#database-urls
sqlalchemy.url = sqlite:////srv/ca.example.com/caramel.sqlite
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
pyramid_tm
###
# wsgi server configuration
###
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, caramel, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_caramel]
level = WARN
handlers =
qualname = caramel
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s