[DEFAULT] # the directory where all real diazo config is done (no trailing slash) LAYOUT_DIR = %(here)s/kofa STATIC_DIR = %(LAYOUT_DIR)s/static [server:main] use = egg:Paste#http host = 0.0.0.0 port = 8000 [composite:main] use = egg:Paste#urlmap /static/bootstrap = bootstrap /static/static = static / = default [app:bootstrap] use = egg:Paste#static document_root = %(here)s/src/bootstrap/dist/ [app:static] use = egg:Paste#static document_root = %(LAYOUT_DIR)s/static/ [pipeline:default] pipeline = theme content [filter:theme] use = egg:diazo rules = %(LAYOUT_DIR)s/base.xml prefix = /static debug = true doctype = [app:content] use = egg:Paste#proxy # this one 'diazofies' some Grok instance named 'app', served on # http://localhost:8080/app/ and delivers filtered results to # http://localhost:8000/ address = http://127.0.0.1:8080/app/++vh++http:localhost:8000/++/