Ask HN: What problems did you notice that you wish some startup could fix?
1 pointsby repartix0 comments
$ ssh -R 2000:localhost:8080 localhost.run
The authenticity of host 'localhost.run (35.171.254.69)' can't be established.
RSA key fingerprint is SHA256:FV8IMJ4IYjYUTnd6on7PqbRjaZf4c1EhhEBgeUdE94I.
Are you sure you want to continue connecting (yes/no/[fingerprint])?
Make it so it prints the url without more input, so it can be called from scripts easily. Like this ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -R 80:localhost:8080 localhost.run
2. Then I got this Port 2000 is not allowed. Only port 80 and 443 are allowed.
I didn't see easily that it's the 8080 I should change.