Serveo

Serveo
软件描述
使用 SSH 将本地服务器暴露在互联网上,并检查和重放 HTTP 流量。无需安装,无需注册。
官方网站
访问软件的官方网站了解更多信息
serveo.net
什么是 Serveo?
Use it like ssh -R 80:localhost:8888 serveo.net. When you establish an SSH connection to serveo.net, a subdomain will be assigned to forward HTTP (and HTTPS) traffic to your local server. Basic usage looks like this: ssh -R 80:localhost:8888 serveo.net The -R option instructs your SSH client to request port forwarding from the server and proxy requests to the specified host and port (usually localhost). A subdomain of serveo.net will be assigned to forward HTTP traffic. Multiple port forwards can be requested at once: ssh -R 80:localhost:8888 -R 80:localhost:9999 serveo.net The target server doesn't have to be on localhost: ssh -R 80:example.com:80 serveo.net The subdomain is chosen deterministically based on your IP address, the provided SSH username, and subdomain availability, so you'll often get the same subdomain between restarts. You can also request a particular subdomain (from a set list): ssh -R incubo:80:localhost:8888 serveo.net ssh -R incubo.serveo.net:80:localhost:8888 serveo.net Change the SSH username to get assigned a different subdomain: ssh -R 80:localhost:8888 foo@serveo.net Ports other than 80 may be requested, and raw TCP traffic will be forwarded. (In this case, there's no way to route connections based on hostname, and the host, if specifed, will be ignored.) ssh -R 1492:localhost:1492 serveo.net If port 0 is requested, a random TCP port will be forwarded: ssh -R 0:localhost:1492 serveo.net