Hi! I run a node process started with node --inspect=0.0.0.0
(which I can safely do since it declares no service and its app doesn’t have any public IP address), I am trying to create a tunnel so that I can debug it locally with Chrome DevTools, so I run:
fly proxy 9230:9229
And add localhost:9230
to the target discovery settings of chrome://inspect, unfortunately Chrome doesn’t find my node process.
I also tried different local ports (and the default 9229) with no more success.
Is there anything obvious I missed?
Thanks