跳至内容

技术博客

月度归档: 2024 年 8 月

Nginx端口转发TCP/UDP

  1. nginx安装stream库: apt install libnginx-mod-stream
  2. 修改/etc/nginx.conf

stream {
server {
listen 8443;
proxy_connect_timeout 5s;
proxy_timeout 10s;
proxy_pass 146.235.19.162:8443; # 转发
}
server {
listen 8443 udp reuseport;
proxy_timeout 10s;
proxy_pass 146.235.19.162:8443;
}
}

作者 HaHaNone发布于 2024年8月5日2024年8月6日于Nginx端口转发TCP/UDP留下评论

近期文章

  • Nginx端口转发TCP/UDP
  • Mysql主从同步
  • WordPress存储简介
  • WordPress搭建(debian12)
  • Linux性能分析:Perf & CPU火焰图

近期评论

您尚未收到任何评论。
  • 2024 年 8 月 (1)
  • 2024 年 7 月 (4)
技术博客 自豪地采用WordPress