linkchecker/config/linkchecker.apache2.conf

41 lines
1 KiB
Text
Raw Normal View History

2012-04-06 06:23:41 +00:00
<IfModule mod_wsgi.c>
WSGIScriptAlias /lconlinewsgi/lc.wsgi /usr/lib/cgi-bin/lc.wsgi
2012-04-22 09:49:28 +00:00
Alias /lconline /usr/share/linkchecker/lconline
# allow people to read the files
2012-04-22 09:49:28 +00:00
<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>
2012-04-06 06:23:41 +00:00
<Location "/lconlinewsgi/lc.wsgi">
2012-04-22 09:49:28 +00:00
<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
2012-04-22 09:49:28 +00:00
# Allow from REPLACE-WITH.YOUR-HOST.IP-ADDRESS
# IPv6 addresses work only with apache2
2012-04-22 09:49:28 +00:00
Allow from ::1/128
</IfVersion>
</Location>
2012-04-06 06:23:41 +00:00
</IfModule>