File: apache.conf

package info (click to toggle)
dwww 1.16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 844 kB
  • sloc: perl: 3,171; ansic: 1,819; sh: 161; makefile: 127; xml: 11
file content (22 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (7)
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