forked from mistio/mist-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
development.ini
executable file
·65 lines (53 loc) · 1.1 KB
/
development.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
[app:main]
use = egg:mist.io
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
#pyramid.includes = pyramid_debugtoolbar
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 8001
[uwsgi]
socket = /tmp/uwsgi-mistio.sock
chmod-socket = 777
http-socket = 127.0.0.1:6543
processes = 2
harakiri = 600
vacuum = true
no-orphans = true
single-interpreter = true
master = 1
cpu-affinity = 1
lazy = true
die-on-term = true
max-requests = 1000
enable-threads = true
http-timeout = 600
socket-timeout = 600
honour-stdin = true
# Begin logging configuration
[loggers]
keys = root, mist.core
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = ERROR
handlers = console
[logger_mist.core]
level = ERROR
handlers =
qualname = mist.core
[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