6shell

Results 4 comments of 6shell

[经过测试,参照[523860169](https://github.com/v2ray/v2ray-core/issues/965#issuecomment-373890324)给出的答案,如果需要启用cloudflare就需要手动修改/etc/nginx/v2ray.conf文件,取消伪装域名,仅采用路径分流的形式,按照此种说法,需要将$http_host = "www.****.com" 修改为$http_upgrade = "websocket",作为一个门外汉,这是我自己测试过可行的笨办法

@171621 location / { proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; if ($http_upgrade = "websocket") { proxy_pass http://127.0.0.1:xxxx; } } 127.0.0.1:xxxx为对应的端口

@171621 是的,好久之前设置的,忘记给你说确实需要去掉伪装的站点才能正常连接

同样错误,期待大大下个版本会解决