v2ray-core
v2ray-core copied to clipboard
使用自签名证书的问题
今天突然想使用自签名证书来配置v2ray,但是发现客户端必须安装了这个证书才能使用。请问有没有办法不在系统内安装这个自签名证书就可以使用?
客户端设置允许不安全的证书
"tlsSettings": {
"allowInsecure": true
},
Use only specified certificates in v2ray without installing them into system root CA. See the official document.
"tlsSettings": {
"allowInsecure": false,
"disableSystemRoot": true
"certificates": [
{
"certificateFile": "/path/to/ca.crt",
"usage": "verify"
}
]
}
This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days