/etc/apache2/conf-available/dwww.conf is in dwww 1.13.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Dwww configuration file for apache 2.4 or later
<IfModule mod_alias.c>
Alias /dwww /var/www/dwww
</IfModule>
<Directory "/var/www/dwww">
<IfModule mod_authz_host.c>
Require local
# Require ip 192.0.2.0/24
# Require ip 2001:db8::a00:20ff:fea7:ccea/10
</IfModule>
</Directory>
<Location "/cgi-bin/dwww">
<IfModule mod_authz_host.c>
Require local
# Require ip 192.0.2.0/24
# Require ip 2001:db8::a00:20ff:fea7:ccea/10
</IfModule>
</Location>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|