--- a/configs/apache.conf Thu Dec 31 19:01:39 2015 +0100
+++ b/configs/apache.conf Mon Jan 04 11:18:27 2016 +0100
@@ -10,26 +10,26 @@
# This directory needs to be r/w by the web server user
# (wwwrun, www-data, who ever), but it must not be
# accessible via HTTP(s)
- <Directory $var>
+ <Directory "$var">
Require all denied
</Directory>
Action once-handler /once-handler/once.cgi virtual
ScriptAlias /once-handler/ $lib/
- Alias $location/public $lib/public
+ Alias $location/static $lib/static
# Order of location blocks matters!
# We handle requests to our script, with the exception (see below)
- # for …/public/… requests. These should be answered from a simple
+ # for …/static/… requests. These should be answered from a simple
# static directory for style sheets and similiar
<Location "$location">
SetHandler once-handler
</Location>
- <Location "$location/public">
+ <Location "$location/static">
SetHandler none
</Location>
- <Directory "$lib/public">
+ <Directory "$lib/static">
Require all granted
Allow from all
</Directory>