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