aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tnccs-20-pdp-pt-tls/hosts/alice/etc/apache2/sites-available/default
blob: f6bf635f45b7df1bc3d90ddd9be2bb0054634f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
WSGIPythonPath /var/www/tnc

<VirtualHost *:80>
    ServerName tnc.strongswan.org
    ServerAlias tnc
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www/tnc

    <Directory /var/www/tnc/config>
        <Files wsgi.py>
            Order deny,allow
            Allow from all
        </Files>
    </Directory>

    WSGIScriptAlias / /var/www/tnc/config/wsgi.py
    WSGIApplicationGroup %{GLOBAL}
    WSGIPassAuthorization On

    ErrorLog ${APACHE_LOG_DIR}/tnc/error.log
    LogLevel warn
    CustomLog ${APACHE_LOG_DIR}/tnc/access.log combined
</VirtualHost>