diff options
Diffstat (limited to 'paste.ini')
-rw-r--r-- | paste.ini | 42 |
1 files changed, 12 insertions, 30 deletions
@@ -6,19 +6,16 @@ debug = false [pipeline:main] -pipeline = errors routing - -[composite:routing] -use = egg:Paste#urlmap -/ = mediagoblin -/mgoblin_media/ = publicstore_serve -/mgoblin_static/ = mediagoblin_static -/theme_static/ = theme_static -/plugin_static/ = plugin_static +pipeline = errors mediagoblin [app:mediagoblin] use = egg:mediagoblin#app config = %(here)s/mediagoblin_local.ini %(here)s/mediagoblin.ini +# static paths +/mgoblin_media = %(here)s/user_dev/media/public +/mgoblin_static = %(here)s/mediagoblin/static +/theme_static = %(here)s/user_dev/theme_static +/plugin_static = %(here)s/user_dev/plugin_static [loggers] keys = root @@ -42,26 +39,6 @@ formatter = generic [formatter_generic] format = %(asctime)s %(levelname)-7.7s [%(name)s] %(message)s -[app:publicstore_serve] -use = egg:Paste#static -document_root = %(here)s/user_dev/media/public/ -cache_max_age = 604800 - -[app:mediagoblin_static] -use = egg:Paste#static -document_root = %(here)s/mediagoblin/static/ -cache_max_age = 86400 - -[app:theme_static] -use = egg:Paste#static -document_root = %(here)s/user_dev/theme_static/ -cache_max_age = 86400 - -[app:plugin_static] -use = egg:Paste#static -document_root = %(here)s/user_dev/plugin_static/ -cache_max_age = 86400 - [filter:errors] use = egg:mediagoblin#errors debug = false @@ -74,9 +51,14 @@ debug = false # The server that is run by default. # By default, should only be accessable locally [server:main] -use = egg:Paste#http +use = egg:mediagoblin#paste_server_selector host = 127.0.0.1 port = 6543 +# Gunicorn settings. See http://docs.gunicorn.org/en/19.0/settings.html +# for more information about configuring Gunicorn +proc_name = gmg +reload = true +accesslog = - ####################### # Helper server configs |