您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“nginx 配置 websocket 出現(xiàn) 404 或 websocket is already in closing or closed state怎么辦”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“nginx 配置 websocket 出現(xiàn) 404 或 websocket is already in closing or closed state怎么辦”吧!
結(jié)論寫在前面:可以對照著下面的配置看看哪里不一樣
可用的最簡配置 location / { proxy_pass http://127.0.0.1:8046/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; }
連接 出現(xiàn) 404
需要在代理的請求配置中加入下面的配置:
轉(zhuǎn)發(fā)Upgrade請求 設(shè)置header的 UPgrade 和 Connection
proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";
出現(xiàn): websocket is already in closing or closed state.
表現(xiàn)為: 連接成功后 瞬間斷開連接
需要設(shè)置:
proxy_http_version 1.1;
http從 1.1 才開始支持 keep-alive的 長連接 默認(rèn)的 1.0并不支持 所以會立刻斷開
也可能是超時 需要配置超時時間
proxy_connect_timeout 10s; proxy_read_timeout 300s; proxy_send_timeout 10s;
到此,相信大家對“nginx 配置 websocket 出現(xiàn) 404 或 websocket is already in closing or closed state怎么辦”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。