Skip to content

Instantly share code, notes, and snippets.

View volodya-wtf's full-sized avatar
🏠
Working from home

Володя volodya-wtf

🏠
Working from home
  • belka.ai
  • Nizhny Novgorod
View GitHub Profile
@felipefernandes
felipefernandes / apache-reverse-proxy-docker.conf
Created March 5, 2018 15:53
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>