Hi,
I did not find a solution for this:
I want to restrict access to certain files to requests coming from the
same public ip address the server is running on, like so:
<files wp-login.php>
order deny,allow
deny from all
allow from xx.xx.xx.xx
</files>
To make it more maintainable I would like to use the %{SERVER_ADDR}
environment variable, but this does not work:
<files wp-login.php>
order deny,allow
deny from all
allow from %{SERVER_ADDR}
</files>
I tried syntax variations, also combined with SetEnfIf but still no success.
How can I allow access only if REMOTE_ADDR == SERVER_ADDR ?
Thanks!
Bughunter
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org