Apache2 как ReverseProxy

Заметка скорее для себя, но мож кому и пригодится

для дебиана/убунты:

# apt-get install libapache2-mod-proxy-html
# a2enmod proxy
# a2enmod proxy_connect
# a2enmod proxy_http
# a2enmod headers
# a2enmod deflate

в конфиге сайта (/etc/apache2/sites-available/) добавить:

ProxyVia On
UseCanonicalName Off
ProxyPass /test http://test.ru
ProxyPassReverse /test http://test.ru
ProxyRequests Off
<Proxy *>
Order Deny,Allow
Allow from All
</Proxy>