You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by BUGHUNTER <bu...@riseup.net> on 2013/07/15 22:43:50 UTC

[users@httpd] How to allow from SERVER_ADDR ?

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 several combinations, also combined with SetEnfIf and syntax 
variations, but still no success.

How can I allow access only if REMOTE_ADDR == SERVER_ADDR ?

Thanks!
Bughunter

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org