嘟嘟社区

wulabing一键v2 怎么和oneinstack 共存共用443?


感觉光做站有点浪费了 属于是
https://xtls.github.io/Xray-docs-next/document/level-1/fallbacks-with-sni.html#%E5%BA%94%E7%94%A8%E6%83%85%E6%99%AF

https://github.com/lxhao61/integrated-examples

这是可以共存443了么?
共存一般就用不了脚本了,脚本的tls不写在nginx里

周星辰 发表于 2022-4-21 22:54
共存一般就用不了脚本了,脚本的tls不写在nginx里

自己手动安装xray吗

本帖最后由 rin 于 2022-4-21 23:07 编辑

已经有tls了的话直接用xray官方的脚本安装,xray的config.json用自己的,nginx的配置文件加几行。
https://github.com/chika0801/Xray-examples/tree/main/VLESS-gRPC-TLS

本帖最后由 huahua101 于 2022-4-21 23:19 编辑

不管什么v2脚本,设置为ws模式
例如http://1.2.4.8:8888/path
你先确认你可以这样在“v-2-r-a-y”中使用

安装nginx,建站,并配置ssl

使https://test.abc.com/path可以访问和原来的效果一样

站点的nginx配置中加上反向代理就可以

location /path {
    proxy_pass       http://127.0.0.1:12345;
    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;
    }

举例
用官方v2fly脚本搭建

原来 “v-2-r-a-y”中使用
地址:1.2.4.8
uuid:xxxxxx
端口:12345
额外id:64
加密协议:auto
协议:ws
路径:/bbs

新的“v-2-r-a-y”设置
地址:域名
uuid:xxxxxx不变
端口:443
额外id:64
加密协议:auto
协议:ws
路径:/bbs
开启tls
跳过证书认证:ture,false任意