Created
February 6, 2017 02:25
-
-
Save abdulhadad/6cc9434aa41ecea1e83cbc4610f57c6d to your computer and use it in GitHub Desktop.
Apache Httpd Proxy for Jasperserver
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
# 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