Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Qlikview through nginx

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

3 Replies
Chernov
Creator
Creator

U need listen 80 port on old server, not 801

 

Anonymous
Not applicable
Author

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 ?

Chernov
Creator
Creator

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