• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Apache reverse proxy virtual host

Brazen

Diamond Member
I'm trying to set up a virtual host that does a reverse proxy into another webserver, but only allow access from a single ip address. Here is what my virtual host configuration looks like:

<VirtualHost abc.abc.abc.abc:80>
ServerName host.domain.com:80

ProxyPass / http://10.10.5.30/
proxyPassReverse / http://10.10.5.30/

<Directory proxy:*>
Order Deny,Allow
Deny from all
Allow from 111.222.333.123
</Directory>

Now it performs the reverse proxy fine and allows access to the site, but it is allowing access from ANYWHERE, instead of denying from all and only allowing from 111.222.333.123 (fake). Anybody know what I'm doing wrong? I've never tried doing this before, but the documentation looksl like this is the correct way of configuring it.
 
Back
Top