Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
D_Bla
Contributor
Contributor

Qlik Replicate Website (Frontend) as Nginx Sublocation

Hello

is it possible to access the Qlik Replicate website as a sublocation via an Nginx server? Unfortunately we can't find the right Nginx configuration to solve the problem. We'd appreciate it if you had an example of this.

Thanks Daniel

Labels (2)
3 Replies
Steve_Nguyen
Support
Support

never hear of sublocation via an Nginx server, so i would said ,, no.

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!
D_Bla
Contributor
Contributor
Author

Hello,

i have now the Nginx Setup that was we have tested, but this is not work. I can open the URL https://internalip:3552/attunityreplicate/  and then come the login dialog. But this is not working over the Nginx with the URL https://NginxDomain/ate01/attunityreplicate/ 

location ^~ /ate01/ {
   proxy_set_header                 Host $http_host;
   proxy_set_header                 X-Real-IP $remote_addr;
   proxy_ssl_verify                 off;
   proxy_set_header                 X-Forwarded-For $proxy_add_x_forwarded_for;
   proxy_set_header                 X-Forwarded-Host $host;
   proxy_set_header                 X-Forwarded-Server $host;
   rewrite                          ^/ate01/(.*)$  /$1  break;
   proxy_pass                       https://internalip:3552/;
}

 

Does anyone have it running or can someone support us here?

Thank you Daniel

Steve_Nguyen
Support
Support

@D_Bla 

in Linux you can not change the host URL like in Windows.

in windows you can change the hostname URL in the serviceconfiguration.xml file :

https://help.qlik.com/en-US/replicate/November2021/Content/Replicate/Main/Installation/Access_Replic...

but for Linux no, this would be a feature request.

https://community.qlik.com/t5/Ideation/ct-p/qlik-product-insight

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!