From 9d32a03c8244a1edae55c69981fba928df0b8f36 Mon Sep 17 00:00:00 2001 From: Einar Stenberg Date: Tue, 2 Nov 2021 14:56:22 +0100 Subject: [PATCH] Create config.json.template --- docker/config.json.template | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docker/config.json.template diff --git a/docker/config.json.template b/docker/config.json.template new file mode 100644 index 00000000..4df6a6d7 --- /dev/null +++ b/docker/config.json.template @@ -0,0 +1,34 @@ +{ + "$schema": "http://info.meshcentral.com/downloads/meshcentral-config-schema.json", + "settings": { + "cert": "myserver.mydomain.com", + "_WANonly": true, + "_LANonly": true, + "_sessionKey": "MyReallySecretPassword1", + "port": 443, + "_aliasPort": 443, + "redirPort": 80, + "_redirAliasPort": 80, + "AgentPong": 300, + "TLSOffload": false, + "SelfUpdate": false, + "AllowFraming": false, + "WebRTC": false + }, + "domains": { + "": { + "_title": "MyServer", + "_title2": "Servername", + "_minify": true, + "NewAccounts": true, + "_userNameIsEmail": true, + "_certUrl": "my.reverse.proxy" + } + }, + "_letsencrypt": { + "__comment__": "Requires NodeJS 8.x or better, Go to https://letsdebug.net/ first before>", + "_email": "myemail@mydomain.com", + "_names": "myserver.mydomain.com", + "production": false + } +}