小哥手里的VPS小鸡有点多,最近想着折腾下探针集中管理,用了哪吒探针,安装后,发现哪吒探针“实时通道断开”问题。经排查一般是反代后添加HTTPS后产生的本问题。
宝塔环境下直接在网站配置文件添加下列代码即可。
location / { proxy_pass http://127.0.0.1:8008; proxy_set_header Host $host; } location /ws { proxy_pass http://127.0.0.1:8008; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; }
其他环境自行添加至nginx配置文件中。
#PROXY-START/ location ^~ / { proxy_pass http://127.0.0.1:8008; proxy_set_header Host $http_host; proxy_set_header Upgrade $http_upgrade; } location ~ ^/(ws|terminal/.+)$ { proxy_pass http://127.0.0.1:8008; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $http_host; } #PROXY-END/ location ^~ /ws { proxy_pass http://127.0.0.1:8008; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; }
评论前必须登录!
注册