Update config_server.json comment translate

This commit is contained in:
lk29 2023-03-12 15:11:09 +05:00 committed by GitHub
parent 85b67fe409
commit 4d3eb75a8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
"settings": { "settings": {
"clients": [ "clients": [
{ {
"id": "", // UUID "id": "", // fill in your UUID
"level": 0, "level": 0,
"email": "love@example.com" "email": "love@example.com"
} }
@ -20,7 +20,7 @@
"dest": 80 "dest": 80
}, },
{ {
"path": "/websocket", // PATH "path": "/websocket", // must be replaced with a custom PATH
"dest": 1234, "dest": 1234,
"xver": 1 "xver": 1
} }
@ -35,8 +35,8 @@
], ],
"certificates": [ "certificates": [
{ {
"certificateFile": "/path/to/fullchain.crt", // "certificateFile": "/path/to/fullchain.crt", // Replace with your certificate, absolute path
"keyFile": "/path/to/private.key" // "keyFile": "/path/to/private.key" // Replace it with your private key, absolute path
} }
] ]
} }
@ -49,7 +49,7 @@
"settings": { "settings": {
"clients": [ "clients": [
{ {
"id": "", // UUID "id": "", // fill in your UUID
"level": 0, "level": 0,
"email": "love@example.com" "email": "love@example.com"
} }
@ -60,8 +60,8 @@
"network": "ws", "network": "ws",
"security": "none", "security": "none",
"wsSettings": { "wsSettings": {
"acceptProxyProtocol": true, // Nginx/Caddy WS "acceptProxyProtocol": true, // Reminder: If you use Nginx/Caddy to reverse generation WS, you need to delete this line
"path": "/websocket" // PATH "path": "/websocket" // It must be replaced with a custom PATH, which needs to be consistent with the above
} }
} }
} }