aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_paste.ini
blob: 91ecbb843193101ae455cd503bd9b798b74ad4c5 (plain)
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
[DEFAULT]
debug = true

[composite:main]
use = egg:Paste#urlmap
/ = mediagoblin
/mgoblin_media/ = publicstore_serve
/test_static/ = mediagoblin_static

[app:mediagoblin]
use = egg:mediagoblin#app
config = %(here)s/mediagoblin.ini

[app:publicstore_serve]
use = egg:Paste#static
document_root = %(here)s/test_user_dev/media/public

[app:mediagoblin_static]
use = egg:Paste#static
document_root = %(here)s/mediagoblin/static/

[celery]
CELERY_ALWAYS_EAGER = true

[server:main]
use = egg:Paste#http
host = 127.0.0.1
port = 6543