]> git.ipfire.org Git - ipfire-2.x.git/blob - config/httpd/vhosts.d/captive.conf
captive: Log into default apache log files
[ipfire-2.x.git] / config / httpd / vhosts.d / captive.conf
1 Listen 1013
2
3 <VirtualHost *:1013>
4 DocumentRoot /srv/web/ipfire/html/captive
5
6 <Directory /srv/web/ipfire/html/captive>
7 Options ExecCGI
8 Order allow,deny
9 Allow from all
10 </Directory>
11
12 ScriptAlias /cgi-bin/ /srv/web/ipfire/cgi-bin/captive/
13 Alias /assets/ /srv/web/ipfire/html/captive/assets/
14
15 ScriptAlias /favicon.ico /srv/web/ipfire/html/captive/assets/favicon.ico
16
17 # All unknown URIs will be redirected to the first
18 # redirector script.
19 ScriptAliasMatch .* /srv/web/ipfire/html/captive/index.cgi
20
21 <Directory /srv/web/ipfire/cgi-bin/captive>
22 Options ExecCGI
23 Order allow,deny
24 Allow from all
25 </Directory>
26 </VirtualHost>