-
Notifications
You must be signed in to change notification settings - Fork 1
/
production.ini
94 lines (74 loc) · 1.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
###
# app configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = call:canopus:main
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
###
# Webpack configuration
###
webpack.manifest = src/canopus/static/manifest.json
webpack.publicRoot = static
webpack.errorOnInvalidReference = false
###
# Rollbar configuration
###
rollbar.access_token =
rollbar.environment = production
rollbar.branch = master
rollbar.root = %(here)s
###
# SQLAlchemy configuration
###
sqlalchemy.url =
sqlalchemy.pool_recycle = 3600
sqlalchemy.pool_size = 50
sqlalchemy.max_overflow = 10
sqlalchemy.pool_timeout = 30
retry.attempts = 3
###
# Gunicorn server configuration
###
[server:main]
use = egg:gunicorn#main
proc_name = canopus
workers = 3
preload = true
reload = true
accesslog = -
###
# logging configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, canopus, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_canopus]
level = WARN
handlers =
qualname = canopus
[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:%(lineno)s][%(threadName)s] %(message)s