Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: HowTo: Apache as Reverse-Proxy for QlikView |
|
Author |
|
jraute
Joined: 13 Sep 2013 Posts: 188 Location: Rheinland, Germany
|
Posted: Tue 21 Oct '14 12:41 Post subject: HowTo: Apache as Reverse-Proxy for QlikView |
|
|
This code helps to configure Apache as ssl wrapper for ssl/tls-connections from the internet to an internal qlikview-Server.
Code: | <VirtualHost *:443>
SSLEngine On
<Location /qlikview>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/qlikview
ProxyPassReverse http://qlikview-server/qlikview
</Location>
<Location /qlikview/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/qlikview/
ProxyPassReverse http://qlikview-server/qlikview/
</Location>
<Location /QlikView/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QlikView/
ProxyPassReverse http://qlikview-server/QlikView/
</Location>
<Location /qlikviewdesktop/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/qlikviewdesktop/
ProxyPassReverse http://qlikview-server/qlikviewdesktop/
</Location>
<Location /QlikViewDesktop/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QlikViewDesktop/
ProxyPassReverse http://qlikview-server/QlikViewDesktop/
</Location>
<Location /QvAJAXZfc/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QvAJAXZfc/
ProxyPassReverse http://qlikview-server/QvAJAXZfc/
</Location>
<Location /QvAjaxZfc/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QvAjaxZfc/
ProxyPassReverse http://qlikview-server/QvAjaxZfc/
</Location>
<Location /QvClients/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QvClients/
ProxyPassReverse http://qlikview-server/QvClients/
</Location>
<Location /qvclients/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/qvclients/
ProxyPassReverse http://qlikview-server/qvclients/
</Location>
<Location /QvPlugin/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QvPlugin/
ProxyPassReverse http://qlikview-server/QvPlugin/
</Location>
<Location /qvplugin/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/qvplugin/
ProxyPassReverse http://qlikview-server/qvplugin/
</Location>
<Location /QvPrint/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/QvPrint/
ProxyPassReverse http://qlikview-server/QvPrint/
</Location>
<Location /scripts/>
ProxyPreserveHost Off
ProxyPass http://qlikview-server/scripts/
ProxyPassReverse http://qlikview-server/scripts/
</Location>
</VirtualHost> |
|
|
Back to top |
|
|
|
|
|
|