Update config_server.json - translation of comments into english

This commit is contained in:
lk29 2023-03-12 04:46:19 +05:00 committed by GitHub
parent f5d5260537
commit 2f23af1b0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -16,13 +16,13 @@
},
"inbounds": [
{
"listen": "0.0.0.0", // "0.0.0.0" IPv4IPv6
"port": 443, //
"listen": "0.0.0.0", // "0.0.0.0" Indicates listening to both IPv4 and IPv6
"port": 443, // The port on which the server listens
"protocol": "vless",
"settings": {
"clients": [
{
"id": "", // ID xray uuid 1-30
"id": "", // User ID, perform xray uuid generation, or a string of 1-30 bytes
"flow": "xtls-rprx-vision"
}
],
@ -48,8 +48,8 @@
"certificates": [
{
"ocspStapling": 3600,
"certificateFile": "/etc/ssl/private/fullchain.cer", // fullchainSSLv2rayN使v2rayNG使
"keyFile": "/etc/ssl/private/private.key" //
"certificateFile": "/etc/ssl/private/fullchain.cer", // For the certificate file, it is recommended to use fullchain (full SSL certificate chain). If there is only a website certificate, v2rayN can be used but v2rayNG cannot be used. Usually, the extension is not distinguished
"keyFile": "/etc/ssl/private/private.key" // private key file
}
]
}
@ -76,8 +76,8 @@
"policy": {
"levels": {
"0": {
"handshake": 2, // 4
"connIdle": 120 // 300
"handshake": 2, // The handshake time limit when the connection is established, in seconds, the default value is 4, it is recommended to be different from the default value
"connIdle": 120 // Connection idle time limit in seconds, the default value is 300, it is recommended to be different from the default value
}
}
}