• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Forbidden access for /var/www/html?

Azurel

Silver Pleskian
Hi,

I have installed "Multi Router Traffic Grapher" and want now access to my MRTG reports. :)
MRTG reports are located here: /var/www/html/mrtg/index.html

I have set at the bottom of /etc/httpd/conf/httpd.conf:

Alias /mrtg "/var/www/html/mrtg"
<Location /mrtg>
Order allow,deny
Allow from all
AuthType Basic
AuthUserFile /var/www/vhosts/.htpasswd
AuthName "Statistics“
require user xxx
</Location>

Now I get:
[root~]# /etc/init.d/httpd configtest
[Wed May 29 00:06:39 2013] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 1014 will probably never match because it overlaps an earlier Alias.
Syntax OK

Line 1014: Alias /mrtg "/var/www/html/mrtg"

After reload configs I run:http://www.domain.tld/mrtg
I get my AuthType, after Login I get only a FORBIDDEN (You do not have permission to access this document.)



SOLVED

Rename from
Alias /mrtg ...
to
Alias /traffic ...
helps and I see now ALL, but where is this another "/mrtg" alias? Not in httpd.conf. Why is /mrtg forbidden to access?
 
Last edited:
Now I get:

[root~]# /etc/init.d/httpd configtest
[Wed May 29 00:06:39 2013] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 1014 will probably never match because it overlaps an earlier Alias.
Syntax OK

# grep -iRne "Alias /mrtg" /etc/httpd/
/etc/httpd/conf.d/mrtg.conf:6:Alias /mrtg /var/www/mrtg
/etc/httpd/conf/httpd.conf:1014:Alias /mrtg "/var/www/html/mrtg"
 
Back
Top