当前位置:   article > 正文

Nginx | nginx 代理websocket连接_nginx websocket 长连接

nginx websocket 长连接

1. Nginx安装

https://blog.csdn.net/qq825478739/category_11423046.html

2. Nginx代理Websocket 长连接

##websocket 代理
	server {
        listen 8888;
        server_name localhost8888;

		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header Host $host;
		proxy_set_header X-Forward_For $proxy_add_x_forwarded_for;
		proxy_http_version 1.1;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection 'upgrade';
		## 这里是代理连接自动断开时间  默认60s
		## 该指令设置与代理服务器的读超时时间。它决定了nginx会等待多长时间来获得请求的响应。
		proxy_read_timeout 3600s;
		# 10299 live
        location /10299/live/{
                proxy_pass http://192.168.0.101:28081/;
        }
        location /10299/live/ctrl/{
                proxy_pass http://192.168.0.101:25000/;
        }
		
		# 10299 playback
        location /10299/playback/{
                proxy_pass http://192.168.0.101:8081/;
        }
		location /10299/playback/ctrl/{
                proxy_pass http://192.168.0.101:15000/;
		}
		## 8900 设备状态 使用
		location /ws{
                proxy_pass http://192.168.0.112:8900/ws;
		}
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/733234
推荐阅读
相关标签
  

闽ICP备14008679号