-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.ini
50 lines (40 loc) · 1012 Bytes
/
example.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
[DEFAULT]
debug = true
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 8081
[app:example]
use = egg:cone.app#main
# pyramid related configuration useful for development
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
# default language
pyramid.default_locale_name = en
# cone.app admin user and password
cone.admin_user = admin
cone.admin_password = admin
# cone.app auth tkt settings
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 =
# plugins to be loaded
cone.plugins = cone.example
# application root node settings
cone.root.title = cone.example
cone.root.default_child = child_1
#cone.root.default_content_tile =
#cone.root.mainmenu_empty_title = false
[pipeline:main]
pipeline =
example