-
Notifications
You must be signed in to change notification settings - Fork 0
/
production.ini
81 lines (64 loc) · 1.74 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
81
[app:charsheet]
use = egg:charsheet
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
sqlalchemy.url = sqlite:///%(here)s/charsheet.db
mako.directories = charsheet:templates
pyramid.includes =
pyramid_tm
# pyramid.openid
openid.store.type = file
openid.store.file.path = %(here)s/sstore
openid.success_callback = charsheet.views:openid_success
openid.provider = https://admin.fedoraproject.org/accounts/openid/id
openid.ax_required = email=http://schema.openid.net/contact/email
# this stuff is okay for now, because OpenID doesn't work yet.
session.secret = 'supasecret'
charsheet.base_url = charsheet-oddshocks.rhcloud.com
# keys held in seperate ini file
secret_config_file = %(here)s/secret.ini
# for HTTPS across whole app (thanks, lmacken!)
filter-with = proxy-prefix
[filter:proxy-prefix]
use = egg:PasteDeploy#prefix
prefix = /
scheme = https
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
[pipeline:main]
pipeline =
charsheet
# Begin logging configuration
[loggers]
keys = root, charsheet, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_charsheet]
level = WARN
handlers =
qualname = charsheet
[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
# End logging configuration