码迷,mamicode.com
首页 > 其他好文 > 详细

nginx socket转发设置

时间:2017-10-13 23:54:33      阅读:823      评论:0      收藏:0      [点我收藏+]

标签:for   proxy   div   内容   请求   stream   col   ups   tar   

1.添加依赖模块,如下

--with-stream --with-stream_ssl_module

2.nginx.conf 配置,参考说明:ngx_stream_core_module

user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
.................
}

# tcp层转发的配置文件夹

include /etc/nginx/tcp.d/*.conf;

请注意,stream配置不能放到http内,即不能放到/etc/nginx/conf.d/,因为stream是通过tcp层转发,而不是http转发。

如配置在http内,启动nginx会报如下错误:

nginx: [emerg] "server" directive is not allowed here

3.在tcp.d下新建个bss_num_30001.conf文件,内容如下:

stream {
  #添加socket转发的代理 upstream proxy_forward { hash $remote_addr consistent; server
139.196.172.xx:80; #server 139.224.18.xx:80; #ip_hash; }   #提供转发服务,即访问forward.xxx.cn:80,并配置好请求头,会调整至proxy_forward指定的地址 server { #listen 127.0.0.1:80; listen forward.xxx.cn:80; proxy_pass xdaili_forward; } }

 

nginx socket转发设置

标签:for   proxy   div   内容   请求   stream   col   ups   tar   

原文地址:http://www.cnblogs.com/vijayfly/p/7663552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!