markdown Nginx与WebSocket

Posted

tags:

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


in the file : `/etc/nginx/conf.d/default.conf`

```
server {
        listen 80;
        listen [::]:80;

        server_name example.com;

        location / {
             include proxy_params;
             proxy_http_version 1.1;
             proxy_set_header Upgrade $http_upgrade;
             proxy_set_header Connection "upgrade";
             proxy_pass http://localhost:8080;
        }
}
```

以上是关于markdown Nginx与WebSocket的主要内容,如果未能解决你的问题,请参考以下文章

Nginx+tomcat websocket配置

nginx支持websocket

Nginx代理WebSocket方法

使用 nginx 的 Websocket 代理不适用于 tomcat。

Nginx代理WebSocket方法

websocket使用nginx代理后连接频繁打开和关闭