File: linkchecker.apache2.conf

package info (click to toggle)
linkchecker 10.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,132 kB
  • sloc: python: 13,154; makefile: 134; sh: 71; xml: 36; sql: 20; javascript: 19; php: 2
file content (40 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download | duplicates (9)
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
29
30
31
32
33
34
35
36
37
38
39
40
<IfModule mod_wsgi.c>

WSGIScriptAlias /lconlinewsgi/lc.wsgi /usr/lib/cgi-bin/lc.wsgi

Alias /lconline /usr/share/linkchecker/lconline
# allow people to read the files
<Directory "/usr/share/linkchecker/lconline">
  Options Indexes MultiViews
  <IfVersion >= 2.3>
    Require local
  </IfVersion>
  <IfVersion < 2.3>
    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
  </IfVersion>
</Directory>

<Location "/lconlinewsgi/lc.wsgi">
  <IfVersion >= 2.3>
    Require local
  </IfVersion>
  <IfVersion < 2.3>
    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
  </IfVersion>
</Location>

</IfModule>