source: main/kofacustom.sampleuni/trunk/etc/themed/zeo1.ini.in @ 11720

Last change on this file since 11720 was 11706, checked in by Henrik Bettermann, 10 years ago
  • Remove waeup.kofa from sources. Use waeup.kofa PyPI package instead.
  • Copy layout folder from waeup.kofa. kofacustom.sampleuni uses its own Diazo layout.
File size: 2.4 KB
Line 
1# deploy.ini
2#
3# Deployment configuration for use with paster/WSGI
4#
5
6[loggers]
7keys = root, wsgi, async, async_trace
8
9[handlers]
10keys = null, console, accesslog, asynclog, async_tracelog
11
12[formatters]
13keys = generic, accesslog
14
15[logger_root]
16level = INFO
17handlers = console
18
19[logger_wsgi]
20level = INFO
21#handlers = accesslog
22handlers = null
23qualname = wsgi
24propagate = 0
25
26[logger_async]
27level = INFO
28handlers = asynclog
29qualname = zc.async
30propagate = 0
31
32[logger_async_trace]
33level = INFO
34handlers = async_tracelog
35qualname = zc.async.trace
36propagate = 0
37
38[handler_null]
39# you can use 'NullHandler' (w/o the path) if under Python 2.7+
40class = waeup.kofa.utils.helpers.NullHandler
41args = ()
42level = NOTSET
43
44[handler_console]
45class = StreamHandler
46args = (sys.stderr,)
47level = NOTSET
48formatter = generic
49
50[handler_accesslog]
51class = FileHandler
52args = (os.path.join(r'${zope_conf:logfiles}', 'zeo1.log'),
53        'a')
54level = INFO
55formatter = accesslog
56
57[handler_asynclog]
58class = FileHandler
59args = (os.path.join(r'${zope_conf:logfiles}', 'zeo1_async.log'),
60        'a')
61level = INFO
62formatter = generic
63
64[handler_async_tracelog]
65class = FileHandler
66args = (os.path.join(r'${zope_conf:logfiles}', 'zeo1_async_trace.log'),
67        'a')
68level = INFO
69formatter = generic
70
71[formatter_generic]
72format = %(asctime)s %(levelname)s [%(name)s] %(message)s
73
74[formatter_accesslog]
75format = %(message)s
76
77[filter:translogger]
78use = egg:Paste#translogger
79setup_console_handler = False
80logger_name = wsgi
81
82[app:content]
83use = egg:${kofa_params:devel_pkg}
84filter-with = translogger
85
86[app:static]
87use = egg:Paste#static
88document_root = %(LAYOUT_DIR)s/static/
89
90[composite:main]
91use = egg:Paste#urlmap
92/static = static
93/ = default
94
95[server:main]
96use = egg:Paste#http
97host = ${kofa_params:host}
98port = ${kofa_params:zeo1_port}
99threadpool_workers = ${kofa_params:threadpool_workers}
100use_threadpool = True
101
102[filter:theme]
103use = egg:diazo
104rules = file:///%(LAYOUT_DIR)s/rules.xml
105prefix = /
106doctype = <!DOCTYPE html>
107# set to true, if you want rules.xml being rebuild on each request
108debug = false
109
110[pipeline:default]
111pipeline = theme
112           content
113[DEFAULT]
114# set the name of the zope.conf file
115zope_conf = %(here)s/zope_zeo1.conf
116env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
117# the directory where all real diazo config is done (no trailing slash)
118LAYOUT_DIR = ${buildout:directory}/layout
119STATIC_DIR = %(LAYOUT_DIR)s/static
Note: See TracBrowser for help on using the repository browser.