MeshCentral/sample-config.json
Aymen Boughanmi 4e67575bdf
Update sample-config.json let's encrypt section
Reference Issues/PRs
Issues #3245 / #3296

what does this implement fix? Explain your changes.
setting skipChallengeVerification to true by default to save sometime when setting up a certificate

any other comments
I can see that this problem has been solved and a suggestion to make it easier
I think is to set "skipChallengeVerification": true by default.
2023-04-18 02:27:29 +01:00

32 lines
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/Ylianst/MeshCentral/master/meshcentral-config-schema.json",
"__comment1__": "This is a simple configuration file, all values and sections that start with underscore (_) are ignored. Edit a section and remove the _ in front of the name. Refer to the user's guide for details.",
"__comment2__": "See node_modules/meshcentral/sample-config-advanced.json for a more advanced example.",
"settings": {
"_cert": "myserver.mydomain.com",
"_WANonly": true,
"_LANonly": true,
"_sessionKey": "MyReallySecretPassword1",
"_port": 443,
"_aliasPort": 443,
"_redirPort": 80,
"_redirAliasPort": 80
},
"domains": {
"": {
"_title": "MyServer",
"_title2": "Servername",
"_minify": true,
"_newAccounts": true,
"_userNameIsEmail": true
}
},
"_letsencrypt": {
"__comment__": "Requires NodeJS 8.x or better, Go to https://letsdebug.net/ first before trying Let's Encrypt.",
"email": "myemail@mydomain.com",
"names": "myserver.mydomain.com",
"skipChallengeVerification": true,
"production": false
}
}