Nginx端口映射TCP
最后更新时间:2021-12-20 18:24:05
添加到
/etc/nginx/nginx.conf
添加内容:
stream {
upstream tcpLink {
hash $remote_addr consistent;
server 127.0.0.1:31905 weight=5 max_fails=3 fail_timeout=30s;
}
server {
listen 4008;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass tcpLink;
}
}
监听4008,映射到127.0.0.1:31905,名字tcpLink。
如果在操作过程有任何疑问,欢迎在后台提交工单。