Set cookies on /, to make them work with /Site.
[matthijs/projects/wipi.git] / conf / exodus.py
index c013e6e0eceae81ddd03a9ac79b280464ffa5b04..60c2545558a1e2dbfe7e91012e349ab8ba0a5989 100644 (file)
@@ -36,3 +36,12 @@ class Config(FarmConfig):
     editor_default = 'text'  # internal default, just for completeness
 
     theme_default = 'exodus'
+     
+    # All urls that would be generated below /wipi/Site can be pointed to
+    # /Site instead, since lighttpd maps /Site to the wipi as well.
+    url_mappings = {'/wipi/Site' : '/Site'}
+
+    # Set cookies on /, so they work on /wipi and /Site alike.
+    cookie_path = '/'
+
+# vim: set ts=8 sts=4 sw=4 expandtab: