nginx代理socket tcp/udp
2018年7月7日
准备一台linux服务器。nginx官网:http://nginx.org/ 。在网上搜到大致用的是 ngx_stream_core_module 这个模块,这里你也可以关注一下官方文档中的其他模块都是做什么的,那么这有相关的启用配置说明,与示例配置。
第一句便是:该ngx_stream_core_module模块是自1.9.0版本。此模块不是默认构建的,应使用配置参数启用 –with-stream 。
那好吧,我们就安装nginx,搞这个的,安装应该都会吧。
1 2 | [root@localhost /]# cd /usr/local/src [root@localhost src]# wget http://nginx.org/download/nginx-1.11.10.tar.gz |
然后解压,解压完,根据文档提示需要使用这个参数–with-stream 来启用功能。
1 | [root@localhost src]# ./configure --prefix=/usr/local/nginx --with-stream |
然后,make,make install。
完成之后就是nginx配置配置文件啦,这个文档中有示例,可知与events模块平级,按照这做就好啦。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | user nobody; worker_processes auto; error_log logs/error.log info; pid logs/nginx.pid; events { worker_connections 1024; } stream { upstream dns_upstreams { server 120.79.11.11:53; server 177.1.22.1:53; } server { listen 53 udp; proxy_pass dns_upstreams; proxy_connect_timeout 1s; proxy_timeout 5s; } } |
» vps12.com:http://www.vps12.com
» 转载请注明来源:运维部落 » 《nginx代理socket tcp/udp》