• 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.

.htaccess problems

philliph22

New Pleskian
Hello

I'm having some problems with my Plesk install, I wonder if someone could point me in the right direction. I've searched quite a bit and tried various suggestions but nothing has worked thus far.

I'm trying to restrict a directory by IP with an .htaccess file:

Order Deny,Allow
Deny from all
Allow from < IP >


Nomatter what IP you put in there is always a 403:

Forbidden
You do not have permission to access this document.


It does look the .htaccess file is being read, as if I put rubbish in there I get a 500 Internal Server Error.

It's as though the .htaccess file doesnt have deny permissions.

The error log blames server configuration.

thanks

Phil
 
Hi philliph22,

Try to turn OFF nginx reverse proxy in server settings. While Nginx is on, it acts as a web client for Apache. So all requests come to Apache from same ip - the server's localhost.
 
Better way is to do this in your .conf file:
<Directory /hidedirectory>
options -Indexes
Order Deny,Allow
Deny from all
Allow from XX.XXX.XX.XXX
</Directory>
 
Back
Top