Hi all,
I am trying to add an alias that will allow me to view Webalizer statistics from the Web.
I added this to my httpd.conf:
Code:
#
# Webalizer usage statistics page
#
Alias /usage/ "/var/www/usage/"
<Directory "/var/www/usage">
AllowOverride All
Options None
Order allow,deny
Allow from ALL
</Directory>
However, this is what I get when I try to restart apache after the change:
Code:
Starting httpd: [Mon Mar 07 13:10:53 2005] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 530 will probably never match because it overlaps an earlier Alias.
and I get a 403 Forbidden message saying I don't have permission to access usage/index.html
I don't know where the "overlap" is. The only other alias is my ScriptAlias pointing to my cgi-bin folder.
Can anyone help me??