Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
lguillou
Contributor
Contributor

Qlik sense app filter behind haproxy

Hi, 

 

We're using Qlik Sense and want to run it behind a haproxy configuration. Authentication and navigation works great it seems there's a timeout when reached the user cannot use any filter in any apps. The user must refresh the navigator withing 1 or 2 minutes each time they are browsing any apps. 

Here's our backend configuration, if anyone has an idea we would be really greatful !

 

backend qlik
    mode http
    balance roundrobin
    timeout queue 1800000
    timeout server 1800000
    timeout connect 1800000
    timeout http-keep-alive 1800000

    option http-server-close
    #http-check send HEAD / HTTP/1.1\r\nHost:haproxy01
    option httpclose

    option forwardfor
    stick-table type ip size 1m expire 30m
    stick match src
    stick store-request src
    acl match_windows_form_authentication path_beg -i /internal_windows_authentication

   # http-response replace-header ^([^ :]*)\ /internal_windows_authentication/(.*) /internal_windows_authentication/
    http-request set-path /internal_forms_authentication if match_windows_form_authentication
    http-request set-header X-Forwarded-Port %[dst_port]
    http-request add-header X-Forwarded-Proto https if { ssl_fc }
    server srv_qlik QLIK_SENSE_SERVER_IP:443 maxconn 2000 ssl check verify none
Labels (1)
1 Solution

Accepted Solutions
Alexis_Touet
Former Employee
Former Employee

Hi @lguillou 
Your timeout settings on your reverse proxy look different than Qlik Sense proxy default settings. 

I would suggest aligning them. 

Hope this helps.

Please don't forget to mark a correct resolution or answer to your problem or question as correct, as it will help other members to find solutions more easily 😉

View solution in original post

1 Reply
Alexis_Touet
Former Employee
Former Employee

Hi @lguillou 
Your timeout settings on your reverse proxy look different than Qlik Sense proxy default settings. 

I would suggest aligning them. 

Hope this helps.

Please don't forget to mark a correct resolution or answer to your problem or question as correct, as it will help other members to find solutions more easily 😉