source: main/waeup.diazo/trunk/kofaproxy.ini @ 12486

Last change on this file since 12486 was 10878, checked in by uli, 11 years ago

Adapt conf to new bootstrap version.

File size: 906 bytes
Line 
1[DEFAULT]
2# the directory where all real diazo config is done (no trailing slash)
3LAYOUT_DIR = %(here)s/kofa
4STATIC_DIR = %(LAYOUT_DIR)s/static
5
6[server:main]
7use = egg:Paste#http
8host = 0.0.0.0
9port = 8000
10
11[composite:main]
12use = egg:Paste#urlmap
13/static/bootstrap = bootstrap
14/static/static = static
15/ = default
16
17[app:bootstrap]
18use = egg:Paste#static
19document_root = %(here)s/src/bootstrap/dist/
20
21[app:static]
22use = egg:Paste#static
23document_root = %(LAYOUT_DIR)s/static/
24
25[pipeline:default]
26pipeline = theme
27           content
28
29[filter:theme]
30use = egg:diazo
31rules = %(LAYOUT_DIR)s/base.xml
32prefix = /static
33debug = true
34doctype = <!DOCTYPE html>
35
36[app:content]
37use = egg:Paste#proxy
38# this one 'diazofies' some Grok instance named 'app', served on
39# http://localhost:8080/app/ and delivers filtered results to
40# http://localhost:8000/
41address = http://127.0.0.1:8080/app/++vh++http:localhost:8000/++/
Note: See TracBrowser for help on using the repository browser.