Ein Proxy am Port 8080 auf 192.168.1.100 richtet folgende Apache-Konfiguration ein. Die Anfragen werden an den 192.168.2.200 weitergeleitet (ebenfalls Port 8080).
[code lang=“xml“]
ProxyRequests On
ProxyVia On
ProxyRemote * http://192.168.2.200:8080
Order deny,allow
Deny from all
Allow from 192.168.1
CacheRoot „/tmp“
CacheMaxExpire 24
CacheLastModifiedFactor 0.1
CacheDefaultExpire 1
ServerName proxy.domain.de
ErrorLog „/var/log/httpd/proxy-error.log“
CustomLog „/var/log/httpd/proxy-access.log“ common
Die RewriteEngine kann zur Sperrung von Adressen genutzt werden.
[code lang=“xml“]RewriteCond %{HTTP_HOST} ^(www\.)?xxx\.com
RewriteRule /$ http://%{HTTP_HOST}/temporary_outage/ [P,L][/code]