From cc733b1eba60b8c07e42d573c36c14e884c31049 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sun, 8 Jun 2008 17:31:14 +0200 Subject: [PATCH] * Update location of static files to /wipi/static instead of /wipistatic. * Move default acl to acl_before, so it always works. --- conf/farmconfig.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conf/farmconfig.py b/conf/farmconfig.py index 36ad494..f8c657d 100644 --- a/conf/farmconfig.py +++ b/conf/farmconfig.py @@ -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 -------------------------------------------------------------- -- 2.30.2