Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cosminpopescu14
Created December 1, 2020 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosminpopescu14/e189f8a8a6e6ffda524c78a2707a7ba6 to your computer and use it in GitHub Desktop.
Save cosminpopescu14/e189f8a8a6e6ffda524c78a2707a7ba6 to your computer and use it in GitHub Desktop.
<VirtualHost *:8081>
ProxyPreserveHost On
ErrorLog ${APACHE_LOG_DIR}/error_quarkus.log
CustomLog ${APACHE_LOG_DIR}/access_quarkus.log combined
# Servers to proxy the connection, or;
# List of application servers:
# Usage:
# ProxyPass / http://[IP Addr.]:[port]/
# ProxyPassReverse / http://[IP Addr.]:[port]/
# Example:
ProxyPass / http://127.0.0.1:8081/
ProxyPassReverse / http://127.0.0.1:8081/
#ServerName localhost
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment