File: linkchecker.apache2.conf

package info (click to toggle)
linkchecker 5.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,508 kB
  • ctags: 3,805
  • sloc: python: 22,666; lex: 1,114; yacc: 785; makefile: 276; ansic: 95; sh: 68; sql: 19; awk: 4
file content (20 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ScriptAlias /lconline/lc.cgi /usr/lib/cgi-bin/lc.cgi
Alias /lconline/ /usr/share/linkchecker/lconline/
# allow people to read the files
<Directory "/usr/share/linkchecker/lconline/">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
</Directory>

<Location "/lconline/lc.cgi">
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0
# Before uncommenting the following lines please put IP address
# of your computer in the Allow line
        # Allow from REPLACE-WITH.YOUR-HOST.IP-ADDRESS
# IPv6 addresses work only with apache2
        Allow from ::1/128
</Location>