-
Notifications
You must be signed in to change notification settings - Fork 38
/
paste.ini
48 lines (38 loc) · 1.38 KB
/
paste.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[DEFAULT]
debug = True
[composite:main]
use = egg:libopencore
# these keys are hardcoded, but the values are just referencing sections in your .ini file
opencore = opencore
tasktracker = tasktracker
wordpress = wordpress
[app:opencore]
use = egg:libopencore#proxy
remote_uri = http://localhost:10001/
# opencore's remote_uri can contain a suffix too; for example,
# to force the avata browser skin,
# remote_uri = http://localhost:10001/++skin++avata/
# just make sure to append the trailing slash
# the opencore app needs to signal that it's opencore, so that the url is rewritten
# for the virtual host monster before proxying. otherwise links will be wrong.
is_opencore = true
# this url rewriting includes adding the /openplans/ part of the request.
# if opencore ever manages to un-hardcode its assumptions about the portal id,
# this can be made configurable.
[filter:deliverance]
use=egg:libopencore#deliverance
# libopencore hardcodes the theme_uri and ruleset because changing them
# is a bad idea. if you want to theme opencore with deliverance, use an
# additional deliverance wrapper external to the whole thing.
[app:tasktracker]
use = egg:libopencore#proxy
remote_uri = http://localhost:10004/
filter-with = deliverance
[app:wordpress]
use = egg:libopencore#proxy
remote_uri = http://localhost:10003/
filter-with = deliverance
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 9997