Merge branch '637_friendlier_hooks'
[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 [filter:errors]
60 use = egg:mediagoblin#errors
61 debug = false
62
63
64 ##############################
65 # Server configuration options
66 ##############################
67
68 # The server that is run by default.
69 # By default, should only be accessable locally
70 [server:main]
71 use = egg:Paste#http
72 host = 127.0.0.1
73 port = 6543
74
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]
84 use = egg:Paste#http
85 host = 0.0.0.0
86 port = 6543
87
88 # Use this if you want to connect via fastcgi
89 [server:fcgi]
90 use = egg:flup#fcgi_fork
91 host = %(fcgi_host)s
92 port = %(fcgi_port)s
93
94 [server:http]
95 use = egg:Paste#http
96 host = %(http_host)s
97 port = %(http_port)s