set default minify to false in docker

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Jan 5, 2025 at 17:47 UTC 95729d2a889279a4b181975d126f5abd54048880
2 files changed +2 -2
docker/config.json.template
+1 -1
@@ -21,7 +21,7 @@
21 "": {
22 "_title": "MyServer",
23 "_title2": "Servername",
24 - "_minify": false,
24 + "minify": false,
25 "NewAccounts": true,
26 "localSessionRecording": true,
27 "_userNameIsEmail": true,
docker/startup.sh
+1 -1
@@ -18,7 +18,7 @@ else
18 sed -i "s/\"NewAccounts\": true/\"NewAccounts\": $ALLOW_NEW_ACCOUNTS/" meshcentral-data/"${CONFIG_FILE}"
19 sed -i "s/\"enabled\": false/\"enabled\": $ALLOWPLUGINS/" meshcentral-data/"${CONFIG_FILE}"
20 sed -i "s/\"localSessionRecording\": false/\"localSessionRecording\": $LOCALSESSIONRECORDING/" meshcentral-data/"${CONFIG_FILE}"
21 - sed -i "s/\"minify\": true/\"minify\": $MINIFY/" meshcentral-data/"${CONFIG_FILE}"
21 + sed -i "s/\"minify\": false/\"minify\": $MINIFY/" meshcentral-data/"${CONFIG_FILE}"
22 sed -i "s/\"WebRTC\": false/\"WebRTC\": $WEBRTC/" meshcentral-data/"${CONFIG_FILE}"
23 sed -i "s/\"AllowFraming\": false/\"AllowFraming\": $IFRAME/" meshcentral-data/"${CONFIG_FILE}"
24 if [ -z "$SESSION_KEY" ]; then