Gateway behind reverse proxy not accessible from designer

Hello,

We have deployed a gateway as a container exposed using a nginx reverse proxy.

Nginx proxy is set to server on 443 and Ignition gateway is set to use 8043 port. Both configured with the same SSL certificates. SSL settings are green in Web Server page of gateway config.

Now, we are able to access the gateway via Chrome, however if we try to add the the gateway in designer it says host unreachable.

Has anyone come across this issue. Please let us know.

Thanks.

Make sure that your reverse proxy configuration is setting headers to facilitate upgrading of websockets connections, e.g.:

    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
1 Like