EN | RU


How to use the service

Easiest method

Add this to your ~/.bashrc or ~/.zshrc:

http () {
        ssh -p 2222 -oHostKeyAlgorithms=+ssh-rsa -R 80:localhost:"$1" ssh.neur0tx.site
}

httpa () {
        ssh -p 2222 -oHostKeyAlgorithms=+ssh-rsa -R "$1":80:localhost:"$2" ssh.neur0tx.site
}

and then run source ~/.bashrc or source ~/.zshrc.

Now you can forward your services like this:

All methods

$ ssh -p 2222 -R 80:localhost:80 ssh.neur0tx.site
$ ssh -p 2222 -R subdomain:80:localhost:80 ssh.neur0tx.site
http () {
        ssh -p 2222 -oHostKeyAlgorithms=+ssh-rsa -R 80:localhost:"$1" ssh.neur0tx.site
}
httpa () {
        ssh -p 2222 -oHostKeyAlgorithms=+ssh-rsa -R "$1":80:localhost:"$2" ssh.neur0tx.site
}
✍️ Edit this page on Gitea.