summarylogtreecommitdiffstats
path: root/apache.conf
blob: d9ede817110f9e6271c3f964e1ecbe8e59898c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Apache >> 2.4 configuration for Sympa
#

<IfModule mod_fcgid.c>
    IPCCommTimeout 120
    MaxProcessCount 2

    Alias /static-sympa /usr/share/webapps/sympa/static_content
    <Directory /usr/share/webapps/sympa/static_content>
        Require all granted
    </Directory>

    <Location /sympa>
        SetHandler fcgid-script
    </Location>

    ScriptAlias /sympa /usr/share/webapps/sympa/cgi-bin/wwsympa-wrapper.fcgi
    <Directory /usr/share/webapps/sympa/cgi-bin>
        Options ExecCGI
        Require all granted
    </Directory>
</IfModule>