Compare commits

...

3 Commits

Author SHA1 Message Date
xqzr
08978ee233
Add IPv6 Listen 2023-11-02 21:51:51 +08:00
xqzr
97210cfd0e
Add IPv6 Listen 2023-11-02 21:51:12 +08:00
xqzr
9a6a9ab54a
add permit_without_stream 2023-11-02 21:34:39 +08:00
3 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ At the same time, you can also choose to use Nginx. A sample configuration snipp
```conf
server {
listen 443 ssl http2 so_keepalive=on;
listen [::]:443 ssl http2 so_keepalive=on;
server_name example.com;
index index.html;

View File

@ -8,6 +8,7 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
```conf
server {
listen 443 ssl http2 so_keepalive=on;
listen [::]:443 ssl http2 so_keepalive=on;
server_name example.com;
index index.html;

View File

@ -39,7 +39,8 @@
"serviceName": "", // ServiceName
"multiMode": false,
//"idle_timeout": 60, //
//"initial_windows_size": 35536 // Cloudflare CDN Cloudflare CDN h2 GOAWAY
//"initial_windows_size": 35536, // Cloudflare CDN Cloudflare CDN h2 GOAWAY
//"permit_without_stream": true // Cloudflare CDN Cloudflare CDN
}
}
},