File kolab-freebusy-httpd.conf of Package kolab-freebusy
# Kolab Groupware Server FreeBusy Provider
#
# By default, this configuration file allows access to:
#
# http://your.server.name/freebusy
#
# You should configure your webserver to allow the client over SSL only.
#
# See the Kolab Groupware Installation Manual for more information.
#
<IfModule mod_alias.c>
ScriptAlias /freebusy __FREEBUSY_ROOT__/public_html/index.php
</IfModule>
<Directory "__FREEBUSY_ROOT__/public_html/">
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order Allow,Deny
# Allow from 127.0.0.1
Allow from All
</IfModule>
Options -Indexes +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php [qsappend,last]
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 month"
</IfModule>
</Directory>