Skip to content

Instantly share code, notes, and snippets.

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 tomasmetal23/1ffcca3b0def099d68323dbcb0f0c71e to your computer and use it in GitHub Desktop.
Save tomasmetal23/1ffcca3b0def099d68323dbcb0f0c71e to your computer and use it in GitHub Desktop.
Apache Reverse Proxy Setup for Docker Containers
<VirtualHost *:80>
ProxyPreserveHost On
ProxyRequests Off
ServerName <<<SITE NAME>>>.com
ProxyPass / http://0.0.0.0:8080/ # Server IP + the exposed port of docker container
ProxyPassReverse / http://0.0.0.0:8080/ # Server IP + the exposed port of docker container
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment