I noticed when updating from 8.0.7 to 8.0.10 that I can no longer connect to the gateway through an ssh tunnel. That is, I ssh from my local workstation with port forwarding for 8088 to an Ignition server that I cannot connect directly to port 8088 on (ssh me@remote_ign_server -L 8088:localhost:8088) and when I connect to http://localhost:8088 I get a connection refused.
Closer examination reveals that ignition is closing the socket right after it connects - I can telnet to localhost 8088 on the ignition server and have a successful HTTP conversation:
[me@ignition_server ~]$ telnet localhost 8088
Trying 127.0.0.1…
Connected to localhost.
Escape character is ‘^]’.
HEAD / HTTP/1.0
HTTP/1.1 302 Found
Date: Fri, 03 Apr 2020 14:01:47 GMT
Referrer-Policy: strict-origin-when-cross-origin
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Location: http://127.0.0.1:8088/welcome
But when I try to do the same on my workstation the connection closes right after it opens:
me@PC:~$ telnet localhost 8088
Trying 127.0.0.1…
Connected to localhost.
Escape character is ‘^]’.
Connection closed by foreign host.