Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello.
We use nginx for load balancing our application(java)
Part of our application it's report based on qlikview
Now I seeking solution integrate qlikview with nginx, I need route http://oursite/qlikview direct to http://qlikview_server/qlikview
In apache work perfect, see below config:
<VirtualHost *:80>
<Location "/qlikview">
ProxyPass http://10.7.136.107/qlikview
</Location>
<Location /QvAJAXZfc/>
ProxyPass http://10.7.136.107/QvAJAXZfc/
</Location>
<Location /QvAjaxZfc/>
ProxyPass http://10.7.136.107/QvAjaxZfc/
</Location>
</VirtualHost>
In nginx doesn't work see config below
server {
listen 801;
location /qlikview {
proxy_pass http://10.7.136.107/qlikview;
}
location /QvAJAXZfc/ {
proxy_pass http://10.7.136.107/QvAJAXZfc/;
}
location /QvAjaxZfc/ {
proxy_pass http://10.7.136.107/QvAjaxZfc/;
}
}
Are anybody have solution on nginx ?
Thanks
U need listen 80 port on old server, not 801
I know.
I have started both server on different ports
Not changed when I stop apache and run nginx on 80 port
I have trouble: authorization not worked
Are you have solution ?
Look at Qlik logs here (if default) : C:\ProgramData\QlikTech\QlikViewServer
And look at nginx log files (if default, in linux) : /var/log/nginx/access.log