You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<VirtualHost*:80>
# Altere o email do administrador.ServerAdmin[email protected]ProxyRequestsoffDocumentRoot /var/www
ProxyPreserveHostOn# Altere a URL que vai ser usada# para acessar o siteServerName example.com
# Caso mais de uma URL for usada,# adicione as outras aqui, uma em# cada linha.ServerAliaswww.example.comErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Alguns possíveis valores: debug, info, notice, warn, error, crit,# alert, emerg.LogLevel error
<Location/>
# Configure aqui a URL do site que se quer acessar.ProxyPass http://internal.example.com:8444/
ProxyPassReverse http://internal.example.com:8444/
Order allow,deny
Allowfrom all
</Location>
</VirtualHost>