Created
January 8, 2015 19:52
-
-
Save joubertredrat/4e49be9b8b2196f5b884 to your computer and use it in GitHub Desktop.
Default apache to access Horizon internal
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 *:80> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/html | |
ProxyPassMatch ^/static/(.*)$ http://10.0.3.152/static/$1 | |
ProxyPass / http://10.0.3.152/horizon/ | |
ProxyPassReverse / http://10.0.3.152/horizon/ | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment