Should be Lato-Regular.ttf not Lato-Regular.woff (why was it even working?)
[mediagoblin.git] / paste.ini
CommitLineData
3a69a5dc 1[DEFAULT]
72ae87af
CAW
2# Set to true to enable web-based debugging messages and etc.
3debug = false
3a69a5dc 4
72ae87af
CAW
5[pipeline:main]
6pipeline = errors routing
7
8[composite:routing]
3a69a5dc
CAW
9use = egg:Paste#urlmap
10/ = mediagoblin
11/mgoblin_media/ = publicstore_serve
582c4d5f 12/mgoblin_static/ = mediagoblin_static
3a69a5dc
CAW
13
14[app:mediagoblin]
15use = egg:mediagoblin#app
16filter-with = beaker
3f5cf663 17config = %(here)s/mediagoblin.ini
3a69a5dc
CAW
18
19[app:publicstore_serve]
20use = egg:Paste#static
3f5cf663 21document_root = %(here)s/user_dev/media/public/
6347605c 22cache_max_age = 604800
3a69a5dc 23
582c4d5f
CAW
24[app:mediagoblin_static]
25use = egg:Paste#static
26document_root = %(here)s/mediagoblin/static/
6347605c 27cache_max_age = 86400
582c4d5f 28
3a69a5dc
CAW
29[filter:beaker]
30use = egg:Beaker#beaker_session
31cache_dir = %(here)s/user_dev/beaker
32beaker.session.key = mediagoblin
33# beaker.session.secret = somesupersecret
34beaker.session.data_dir = %(here)s/user_dev/beaker/sessions/data
35beaker.session.lock_dir = %(here)s/user_dev/beaker/sessions/lock
54e219fe 36
72ae87af
CAW
37[filter:errors]
38use = egg:mediagoblin#errors
39debug = false
40
54e219fe
CAW
41[server:main]
42use = egg:Paste#http
43host = 127.0.0.1
44port = 6543