iTank ideas

Proxy inverso con Apache

Instrucciones rápidas sobre cómo configurar un proxy inverso con Apache sobre Ubuntu Server

# a2enmod proxy
# a2enmod proxy_http
# systemctl restart apache2

# nano /etc/apache2/sites-avaliable/lan_server_net.conf>
<VirtualHost *:80>
ServerName lan.server.net
ProxyPass / http://webserver.lan/
ProxyPassReverse / http://webserver.lan/
</VirtualHost>
# systemctl reload apache2

Si el servidor interno no está disponible, Apache retornará un Error 503 Service unavaliable.

Vía www.jamescoyle.net