source: main/waeup.kofa/branches/henrik-regista/etc/themed/deploy.ini.in @ 11945

Last change on this file since 11945 was 11254, checked in by uli, 11 years ago

Merge changes from uli-diazo-themed back into trunk. If this works, then a miracle happened.

File size: 2.3 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}', 'access.log'),
53        'a')
54level = INFO
55formatter = accesslog
56
57[handler_asynclog]
58class = FileHandler
59args = (os.path.join(r'${zope_conf:logfiles}', 'async.log'),
60        'a')
61level = INFO
62formatter = generic
63
64[handler_async_tracelog]
65class = FileHandler
66args = (os.path.join(r'${zope_conf:logfiles}', '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:base_port}
99
100[filter:theme]
101use = egg:diazo
102rules = file:///%(LAYOUT_DIR)s/rules.xml
103prefix = /
104doctype = <!DOCTYPE html>
105# set to true, if you want rules.xml being rebuild on each request
106debug = false
107
108[pipeline:default]
109pipeline = theme
110           content
111
112[DEFAULT]
113# set the name of the zope.conf file
114zope_conf = %(here)s/zope.conf
115env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
116# the directory where all real diazo config is done (no trailing slash)
117LAYOUT_DIR = ${buildout:directory}/layout
118STATIC_DIR = %(LAYOUT_DIR)s/static
Note: See TracBrowser for help on using the repository browser.