nginx配置socket服务

Posted 夏振兴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx配置socket服务相关的知识,希望对你有一定的参考价值。

1、服务器环境:centos7.5

2、安装nginx

首先下载:wget http://nginx.org/download/nginx-1.14.0.tar.gz

解压:tar zxvf  nginx-1.14.0.tar.gz得到解压包nginx-1.14.0

进入nginx-1.14.0,执行编译命令:./configure  --with-stream --without-http

(注意:要系统支持c编译环境,安装方法yum -y install gcc gcc-c++)

make 

make install

3、修改配置文件,nginx默认安装路径:/usr/local/nginx

vim /usr/local/nginx/conf/nginx.conf,内容如下:

#user nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
#use epoll;
       worker_connections 1024;
}

stream {
      upstream socket{
            server 192.168.1.155:8000;   #socket服务器,监听8000端口
            server 192.168.1.154:8000;   #socket服务器,监听8000端口
     }
     server {
           listen 80;
           proxy_pass socket; 

     }

}

4、启动:/usr/local/nginx/sbin/nginx

   停止:/usr/local/nginx/sbin/nginx -s stop

     退出:/usr/local/nginx/sbin/nginx -s quit

     重启:/usr/local/nginx/sbin/nginx -s reload

 















以上是关于nginx配置socket服务的主要内容,如果未能解决你的问题,请参考以下文章

基于socket.io +koa2 +天行机器人 实现简单人机实时通讯(nginx处理socket.io https代理问题)

带有 nginx 负载平衡器问题的 Socket.IO 集群

socket.io、netty-socketio、nginx 每分钟断开连接

gitlab 使用现有 nginx 服务器

nginx.conf 忽略了 nginx-ingress 配置映射片段

nginx转发socket配置