Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Created February 6, 2017 02:25
Show Gist options
  • Save abdulhadad/6cc9434aa41ecea1e83cbc4610f57c6d to your computer and use it in GitHub Desktop.
Save abdulhadad/6cc9434aa41ecea1e83cbc4610f57c6d to your computer and use it in GitHub Desktop.
Apache Httpd Proxy for Jasperserver
# load http://<ip/host>:8080/jasperserver/ as /jasperserver/
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 /jasperserver/ http://<ip/host>:8080/jasperserver/
ProxyPassReverse /jasperserver/ http://<ip/host>:8080/jasperserver/
<Location /jasperserver/>
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