* Update location of static files to /wipi/static instead of /wipistatic.
authorMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sun, 8 Jun 2008 15:31:14 +0000 (17:31 +0200)
committerMatthijs Kooijman <matthijs@stdio.flexvps.nl>
Sun, 8 Jun 2008 15:31:14 +0000 (17:31 +0200)
 * Move default acl to acl_before, so it always works.

conf/farmconfig.py

index 36ad4943bff48466dd3f344f767f0082e8e09c61..f8c657d29563bbaf6f0304c98655daf2f0710814 100644 (file)
@@ -104,7 +104,7 @@ class FarmConfig(DefaultConfig):
     # For Twisted and standalone server, the default will automatically work.
     # For others, you should make a matching server config (e.g. an Apache
     # Alias definition pointing to the directory with the static stuff).
-    url_prefix_static = '/wipistatic'
+    url_prefix_static = '/wipi/static'
 
 
     # Security ----------------------------------------------------------
@@ -126,7 +126,8 @@ class FarmConfig(DefaultConfig):
     acl_hierarchic = True
 
     # Give users all rights, but don't give any rights to anonymous users
-    acl_rights_default = u"Known:read,write,delete,revert,admin"
+    acl_rights_default = u""
+    acl_rights_before = u"Known:read,write,delete,revert,admin"
 
     # Mail --------------------------------------------------------------