Open Source -> Free Software from the borrowed extlib repositories
[mediagoblin.git] / paste.ini
CommitLineData
daed11b8
E
1# If you want to make changes to this file, first copy it to
2# paste_local.ini, then make the changes there.
3
3a69a5dc 4[DEFAULT]
72ae87af
CAW
5# Set to true to enable web-based debugging messages and etc.
6debug = false
3a69a5dc 7
72ae87af
CAW
8[pipeline:main]
9pipeline = errors routing
10
11[composite:routing]
3a69a5dc
CAW
12use = egg:Paste#urlmap
13/ = mediagoblin
14/mgoblin_media/ = publicstore_serve
582c4d5f 15/mgoblin_static/ = mediagoblin_static
71eb4577 16/theme_static/ = theme_static
3a69a5dc
CAW
17
18[app:mediagoblin]
19use = egg:mediagoblin#app
91903aa6 20config = %(here)s/mediagoblin_local.ini %(here)s/mediagoblin.ini
3a69a5dc 21
7cbbf3e7
E
22[loggers]
23keys = root
24
25[handlers]
26keys = console
27
28[formatters]
29keys = generic
30
31[logger_root]
32level = INFO
33handlers = console
34
35[handler_console]
36class = StreamHandler
37args = (sys.stderr,)
38level = NOTSET
39formatter = generic
40
41[formatter_generic]
42format = %(asctime)s %(levelname)-7.7s [%(name)s] %(message)s
43
3a69a5dc
CAW
44[app:publicstore_serve]
45use = egg:Paste#static
3f5cf663 46document_root = %(here)s/user_dev/media/public/
6347605c 47cache_max_age = 604800
3a69a5dc 48
582c4d5f
CAW
49[app:mediagoblin_static]
50use = egg:Paste#static
51document_root = %(here)s/mediagoblin/static/
6347605c 52cache_max_age = 86400
582c4d5f 53
71eb4577
CAW
54[app:theme_static]
55use = egg:Paste#static
56document_root = %(here)s/user_dev/theme_static/
57cache_max_age = 86400
58
72ae87af
CAW
59[filter:errors]
60use = egg:mediagoblin#errors
61debug = false
62
505310c2
CAW
63
64##############################
65# Server configuration options
66##############################
67
68# The server that is run by default.
69# By default, should only be accessable locally
54e219fe
CAW
70[server:main]
71use = egg:Paste#http
72host = 127.0.0.1
73port = 6543
4b186b73 74
505310c2
CAW
75#######################
76# Helper server configs
77# ---------------------
78# If you are configuring the paste config manually, you can remove
79# these.
80
81# Use this if you want to run on port 6543 and have MediaGoblin be
82# viewable externally
83[server:broadcast]
84use = egg:Paste#http
85host = 0.0.0.0
86port = 6543
87
88# Use this if you want to connect via fastcgi
4b186b73 89[server:fcgi]
00aca685 90use = egg:flup#fcgi_fork
6b7779ea
CAW
91host = %(fcgi_host)s
92port = %(fcgi_port)s
93
94[server:http]
95use = egg:Paste#http
96host = %(http_host)s
97port = %(http_port)s