Skip to content

Commit

Permalink
fix: added vless/vmess kcp notls for english docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtheted authored Jul 25, 2024
1 parent 11708c1 commit 2775a68
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions marzban/en/docs/xray-inbounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,48 @@ In this document we'll try to add every Xray inbound that you can use on Marzban
```
:::

::: details VLESS KCP NoTLS
::: code-group
```json
{
"tag": "VLESS KCP NoTLS",
"listen": "0.0.0.0",
"port": 8080,
"protocol": "vless",
"settings": {
"clients": [],
"decryption": "none"
},
"streamSettings": {
"network": "kcp",
"kcpSettings": {
"mtu": 1350,
"tti": 20,
"uplinkCapacity": 5,
"downlinkCapacity": 20,
"congestion": false,
"readBufferSize": 2,
"writeBufferSize": 2,
"headers": {
"Host": [
""
]
},
"seed": "TED"
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls",
"quic"
]
}
}
```
:::

::: details VLESS WS NoTLS
::: code-group
```json
Expand Down Expand Up @@ -1179,6 +1221,48 @@ In this document we'll try to add every Xray inbound that you can use on Marzban
```
:::

::: details VMess KCP NoTLS
::: code-group
```json
{
"tag": "VMESS KCP NoTLS",
"listen": "0.0.0.0",
"port": 8080,
"protocol": "vmess",
"settings": {
"clients": [],
"decryption": "none"
},
"streamSettings": {
"network": "kcp",
"kcpSettings": {
"mtu": 1350,
"tti": 20,
"uplinkCapacity": 5,
"downlinkCapacity": 20,
"congestion": false,
"readBufferSize": 2,
"writeBufferSize": 2,
"headers": {
"Host": [
""
]
},
"seed": "TED"
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls",
"quic"
]
}
}
```
:::

::: details VMess WS NoTLS
::: code-group
```json
Expand Down

0 comments on commit 2775a68

Please sign in to comment.