v2ray configuration outbounds protocol is trojan #971
Unanswered
liuchengts
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to set Configuration outbounds Protocol to Trojan, but there are some problems;
The reason is that my Trojan-Go, which is websocket-based and SSL authenticated, seems to be unable to configure this content in outbounds in V2Ray;
It works fine when I use the Trojan-Go client;
Program version is:
V2ray-go 4.37.2;
Trojan-Go v0.8.3;
Here is my outbounds configuration(The domain name here is xxxx.com):
"outbounds": [
{
"protocol": "trojan",
"streamSettings": {
"wsSettings": {
"path": "/a",
"headers": {
"host": "xxxx.com"
}
},
"tlsSettings": {
"certificates": [
{
"certificateFile": "/root/xxxx.com/fullchain.crt",
"keyFile": "/root/xxxx.com/privkey.key"
}
]
},
"network": "ws"
},
"settings": {
"servers": [
{
"address": "xxxx.com",
"port": 443,
"password": "123456",
"level": 0
}
],
"tag": "trojan"
}
}
]
Beta Was this translation helpful? Give feedback.
All reactions