Ignore:
Timestamp:
08/03/18 13:17:46 (7 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
master, perl-5.22
Children:
a384a97
Parents:
981dbbc (diff), 1163be4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'gcc484'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • npl/mailserver/zpush/z-push.conf

    r981dbbc rce9f9b3  
    1 #Syn-3 zarafa z-push configuration for apache
     1# SYN-3 Z-Push - ActiveSync over-the-air - default Apache configuration
    22
    3 Alias /Microsoft-Server-ActiveSync /var/www/htdocs/syn3/z-push/index.php
     3<IfModule mod_alias.c>
     4    Alias /Microsoft-Server-ActiveSync /usr/share/z-push/index.php
     5</IfModule>
    46
     7<Directory /usr/share/z-push>
     8    # Don't list a directory index, follow symlinks (maybe state dir is somewhere linked)
     9    DirectoryIndex index.php
     10    Options -Indexes +FollowSymLinks
     11
     12    # Security
     13    # Don't allow .htaccess Overrides, disallow access to files
     14    AllowOverride none
     15    Order allow,deny
     16    allow from all
     17
     18    <Files "config.php">
     19        Deny from All
     20    </Files>
     21</Directory>
Note: See TracChangeset for help on using the changeset viewer.