File: apache.conf

package info (click to toggle)
dwww 1.11.3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 800 kB
  • ctags: 367
  • sloc: perl: 3,046; ansic: 1,823; sh: 163; makefile: 159
file content (28 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Dwww configuration file for apache* web-servers


<Directory "/var/www/dwww">
        Order deny,allow

# Before uncommenting the following lines please put IP address
# of your computer in the Allow line
        # Deny from all
        # Allow from 127.0.0.0/255.0.0.0 REPLACE-WITH.YOUR.HOST.IP-ADDRESS

# IPv6 addresses work only with apache2
        # Allow from ::1/128
</Directory>

<Location "/cgi-bin/dwww">
        Order deny,allow

# Before uncommenting the following lines please put IP address
# of your computer in the Allow line
        # Deny from all
        # Allow from 127.0.0.0/255.0.0.0 REPLACE-WITH.YOUR-HOST.IP-ADDRESS

# IPv6 addresses work only with apache2
        # Allow from ::1/128
</Location>

# vim:ft=conf:et:ts=8