Sat Mar 27 2004 Joe Orton <jorton@redhat.com> 2.0_10-22 - allow access to /usage from ::1 and 127.0.0.1 by default - require crontabs Sun Mar 21 2004 Florian La Roche <Florian.LaRoche@redhat.de> - keep apps owned by root:root
14 lines
352 B
Text
14 lines
352 B
Text
#
|
|
# This configuration file maps the webalizer log analysis
|
|
# results (generated daily) into the URL space. By default
|
|
# these results are only accessible from the local host.
|
|
#
|
|
Alias /usage /var/www/usage
|
|
|
|
<Location /usage>
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from 127.0.0.1
|
|
Allow from ::1
|
|
# Allow from .example.com
|
|
</Location>
|