-
Notifications
You must be signed in to change notification settings - Fork 6
/
cone.ini
77 lines (58 loc) · 1.25 KB
/
cone.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
[DEFAULT]
debug = true
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 8081
[app:cone]
use = egg:cone.app#main
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
#cone.available_languages = en, de
cone.admin_user = admin
cone.admin_password = admin
#cone.authenticator =
cone.auth_secret = 12345
#cone.auth_cookie_name =
#cone.auth_secure =
#cone.auth_include_ip =
#cone.auth_timeout =
#cone.auth_reissue_time =
#cone.auth_max_age =
#cone.auth_http_only =
#cone.auth_path =
#cone.auth_wild_domain =
#cone.main_template =
#cone.plugins =
#cone.root.node_factory =
cone.root.title = cone
#cone.root.default_child =
#cone.root.default_content_tile =
cone.root.mainmenu_empty_title = false
[pipeline:main]
pipeline =
cone
[loggers]
keys = root, cone
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_cone]
level = DEBUG
handlers =
qualname = cone.app
[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