Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 441c44b9fc5fe140a3810dcf6ef1a35c > files > 9

kolab-webadmin-3.0.5-4.mga4.noarch.rpm

# Kolab Groupware Server Web Administration Panel
#
# By default, this configuration file allows access to:
#
#   http://yourserver/kolab-webadmin
#
# You should configure your webserver to allow the client over SSL only.
#
# See the Kolab Groupware Installation Manual for more information.
#

Alias /kolab-webadmin /usr/share/kolab-webadmin/public_html/

<Directory "/usr/share/kolab-webadmin/public_html/">
    <IfModule mod_rewrite.c>
        RewriteEngine on
        # NOTE: This needs to point to the base uri of your installation.
        RewriteBase /kolab-webadmin/

        # Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} !=/favicon.ico
        RewriteRule ^api/(.*)\.(.*)$ api/index.php?service=$1&method=$2 [L,QSA]

    </IfModule>

    AddDefaultCharset   UTF-8
    php_value error_reporting      6135

    DirectoryIndex index.php
    AllowOverride All
    Order Allow,Deny
    Allow from All
</Directory>