Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Created November 24, 2014 06:47
Show Gist options
  • Save abdulhadad/493c689520877d515103 to your computer and use it in GitHub Desktop.
Save abdulhadad/493c689520877d515103 to your computer and use it in GitHub Desktop.
Separate onfiguration of Pentaho called via Apache httpd proxy module
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