forked from Kinto/kinto-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kinto.ini
73 lines (57 loc) · 1.33 KB
/
kinto.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
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 8888
[app:main]
use = egg:kinto
kinto.storage_backend = cliquet.storage.postgresql
kinto.cache_backend = cliquet.cache.postgresql
kinto.permission_backend = cliquet.permission.postgresql
kinto.userid_hmac_secret = thisMUSTbeCHANGED
multiauth.policies = basicauth
# multiauth.policies = fxa basicauth
kinto.experimental_collection_schema_validation = true
# FIND A WAY TO CONFIGURE IT VIA HEROKU.
# kinto.http_scheme = https
# kinto.http_host = kinto.services.mozilla.com
# [uwsgi]
# wsgi-file = app.wsgi
# enable-threads = true
# socket = /var/run/uwsgi/kinto.sock
# chmod-socket = 666
# processes = 3
# master = true
# module = kinto
# harakiri = 120
# uid = kinto
# gid = kinto
# virtualenv = .venv
# lazy = true
# lazy-apps = true
# single-interpreter = true
# buffer-size = 65535
# post-buffering = 65535
#
# Logging configuration
#
# kinto.logging_renderer = cliquet.logs.ClassicLogRenderer
[loggers]
keys = root, cliquet
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_cliquet]
level = DEBUG
handlers =
qualname = cliquet
[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