diff options
Diffstat (limited to 'paste.ini')
-rw-r--r-- | paste.ini | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,7 @@ use = egg:Paste#urlmap /mgoblin_media/ = publicstore_serve /mgoblin_static/ = mediagoblin_static /theme_static/ = theme_static +/plugin_static/ = plugin_static [app:mediagoblin] use = egg:mediagoblin#app @@ -56,6 +57,11 @@ 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 |