nginx反向代理websocket,ws转wss

记录一下nginx规则



location ^~ /echargenet-admin # 本地代理目录
{
    proxy_pass http://127.0.0.1:8080/xxx; # websocket地址
    proxy_set_header Host $host; # 发送host
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_read_timeout 1800s; # 读取超时时间
    proxy_send_timeout 1800s; # 发送超时时间
    proxy_set_header X-NginX-Proxy true;
    proxy_http_version 1.1;
    proxy_connect_timeout 600s; # 连接超时时间
    add_header X-Cache $upstream_cache_status;
    proxy_set_header Connection "upgrade";
    #Set Nginx Cache
    
    
    set $static_fileP7OoskYJ 0;
    if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
    {
    	set $static_fileP7OoskYJ 1;
    	expires 12h;
        }
    if ( $static_fileP7OoskYJ = 0 )
    {
    add_header Cache-Control no-cache;
    }
}


posted @ 2022-12-02 22:10  Death-Satan  阅读(1026)  评论(0编辑  收藏  举报