cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2475
Views
6
Helpful
2
Replies

Reverse Proxy Nginx with co-browse problem

snetykkim
Level 1
Level 1

I have got a working lab model for the RE Mobile.

Everything works fine on the internal network.

I have now included the Nginx Reverse Proxy and tried calling via the Internet using a web browser but there are issues with co-browse.

The call gets routed in to the Finesse Desktop.

When I click the co-browse on the Finesse Desktop, the customer can't see the requested alarm.

It only appears when I try it through a reverse proxy server.

Please advice me.

Below is my Nginx configration :

server {

                listen 80;

                #listen 8080;

                listen 443 ssl;

                listen 8443 ssl;

                server_name rem.domain.co.kr;

                ssl_certificate /etc/nginx/certificate.crt;

                ssl_certificate_key /etc/nginx/privateKey.key;

                location / {

  

                proxy_pass https://10.0.9.101:8443/assistsample/$request_uri;

               # root /usr/share/nginx/html;

               # index index.html index.htm;

                }

                #REQUIRED FOR CSDK SESSION REQUEST

                location /gateway/ {

                proxy_http_version 1.1;

                proxy_set_header Upgrade $http_upgrade;

                proxy_set_header Host $http_host;

                proxy_pass