aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sympa/templates/webapp_sympa.conf
blob: 1a5081998ac17864cdbc19d6706517deb3c50ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Directory <%= lib_dir + "/sympa/cgi"  %> >
    SetHandler fcgid-script
    Options +ExecCGI
    AddHandler cgi-script .fcgi
    DirectoryIndex wwsympa-wrapper.fcgi

    <IfModule mod_authz_core.c>
        # Apache 2.4
        Require all granted
    </IfModule>
    <IfModule !mod_authz_core.c>
        # Apache 2.2
        Order allow,deny
        Allow from all
    </IfModule>
</Directory>