Forked from felipefernandes/apache-reverse-proxy-docker.conf
Created
November 7, 2023 23:36
-
-
Save Mr-Kumar-Abhishek/e807f1d07b3de7e77edc98df1f9c9bb7 to your computer and use it in GitHub Desktop.
Apache Reverse Proxy Setup for Docker Containers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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