Created
January 21, 2019 20:14
-
-
Save spy86/641a1a3bf682e573fe206586f36f40ab to your computer and use it in GitHub Desktop.
Sample apache proxy configurations
This file contains hidden or 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 myhost:80> | |
| ServerName myhost | |
| DocumentRoot /path/to/myapp/public | |
| ProxyPass / http://myapp:8080/ | |
| ProxyPassReverse / http://myapp:8080/ | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment