Last change
on this file since 11102 was
10122,
checked in by uli, 12 years ago
|
Add a raw config to show content as-is, w/o any theme.
|
File size:
572 bytes
|
Line | |
---|
1 | # A minimal paster config that only enables proxying, i.e. some grok |
---|
2 | # instance content is served w/o modifications. |
---|
3 | # |
---|
4 | # This config can be used to prepare a site for being 'diazofied' later on. |
---|
5 | # |
---|
6 | # See the last line for the Grok application to be served. |
---|
7 | # |
---|
8 | [server:main] |
---|
9 | use = egg:Paste#http |
---|
10 | host = 0.0.0.0 |
---|
11 | port = 8000 |
---|
12 | |
---|
13 | [app:main] |
---|
14 | use = egg:Paste#proxy |
---|
15 | # this one 'diazofies' some Grok instance named 'app', served on |
---|
16 | # http://localhost:8080/app/ and delivers filtered results to |
---|
17 | # http://localhost:8000/ |
---|
18 | address = http://127.0.0.1:8080/app/++vh++http:localhost:8000/++/ |
---|
Note: See
TracBrowser for help on using the repository browser.