tcp-over-websocket
tcp-over-websocket copied to clipboard
将TCP/UDP放到WebSocket中传输(就能走CDN)基于ws的内网穿透 隧道代理 tcp2ws 全平台0依赖
Results
2
tcp-over-websocket issues
Sort by
recently updated
recently updated
newest added
如果可以同时添加多个代理,通过读取config文件来管理是不是会更好,比如tcp2ws -config.cfg config文件里就一行一个代理,或者说定义一些.crt和.key文件的路径,我想这样会不会更好。每次重启都打这一长串........
./tcp2ws 22 50022 Proxy with Nginx: location /ws/ { proxy_pass http://192.168.1.2:50022/; proxy_read_timeout 3600; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Forwarded-For $remote_addr; access_log off; }