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
1 changed files with 7 additions and 7 deletions

View File

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