美文网首页
nginx配置websocket支持wss

nginx配置websocket支持wss

作者: lunabird | 来源:发表于2018-04-09 17:57 被阅读3131次

    参考https://blog.csdn.net/chopin407/article/details/52937645
    如下配置nginx

    map $http_upgrade $connection_upgrade {  
        default upgrade;  
        '' close;  
    }  
    upstream websocket {  
        server 128.190.82.105:8888;  
    }  
    server {  
        listen 8888;  
        server_name proxy.hello.com;
        ssl on;
        ssl_certificate /etc/nginx/ssl/hello.com_bundle.crt;
        ssl_certificate_key /etc/nginx/ssl/hello.com.key;
        ssl_session_timeout 20m;
        ssl_verify_client off;
        location / {  
            proxy_pass http://websocket;  
            proxy_http_version 1.1;  
            proxy_set_header Upgrade $http_upgrade;  
            proxy_set_header Connection "Upgrade";  
        }  
    }
    

    128.190.82.105:8888是真正的服务端地址,nginx所在域名是proxy.hello.com,代理的端口号是8888,所以前端访问的时候这样配置:

    WEBSOCKET_URL: 'wss://proxy.hello.com:8888',  
    
    image.png

    检查nginx.conf正确性:

    nginx -t
    

    重新加载配置文件:

    nginx -s reload
    

    相关文章

      网友评论

          本文标题:nginx配置websocket支持wss

          本文链接:https://www.haomeiwen.com/subject/iunihftx.html