Created
November 24, 2014 06:47
-
-
Save abdulhadad/493c689520877d515103 to your computer and use it in GitHub Desktop.
Separate onfiguration of Pentaho called via Apache httpd proxy module
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
LoadModule proxy_module modules/mod_proxy.so | |
LoadModule proxy_http_module modules/mod_proxy_http.so | |
ProxyRequests Off | |
ProxyPreserveHost On | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> | |
ProxyPass /pentaho/ http://localhost:8080/pentaho/ | |
ProxyPassReverse /pentaho/ http://localhost:8080/pentaho/ | |
<Location /pentaho/> | |
Order allow,deny | |
Allow from all | |
</Location> | |
ProxyPass /pentaho-style/ http://localhost:8080/pentaho-style/ | |
ProxyPassReverse /pentaho-style/ http://localhost:8080/pentaho-style/ | |
<Location /pentaho-style/> | |
Order allow,deny | |
Allow from all | |
</Location> | |
ProxyPass /saiku-ui/ http://localhost:8080/saiku-ui/ | |
ProxyPassReverse /saiku-ui/ http://localhost:8080/saiku-ui/ | |
<Location /saiku-ui/> | |
Order allow,deny | |
Allow from all | |
</Location> | |
ProxyPass /saiku-webapp/ http://localhost:8080/saiku-webapp/ | |
ProxyPassReverse /saiku-webapp/ http://localhost:8080/saiku-webapp/ | |
<Location /saiku-webapp/> | |
Order allow,deny | |
Allow from all | |
</Location> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment