From f83ffb2776a2ebd60fc3d66f0d6180473dfbbf0a Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Fri, 30 Apr 2021 14:21:42 +0200 Subject: [PATCH] chore: improve configuration --- entrypoint.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 497c180..0be50a1 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -74,12 +74,16 @@ if ! [ -f settings.json ]; then "port" :${ETHERPAD_PORT}, "skinName": "colibris", "sessionKey" : "${ETHERPAD_SESSION_KEY}", + "trustProxy" : false, + "minify" : true, + "defaultPadText" : "Welcome to Etherpad!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nIMPORTANT: this pad will be deleted after 30 days. Please don't consider it as document storage." "dbType" : "mysql", "dbSettings" : { "user" : "${ETHERPAD_DB_USERNAME}", "host" : "${ETHERPAD_DB_HOST}", "password": "${ETHERPAD_DB_PASSWORD}", - "database": "${ETHERPAD_DB_NAME}" + "database": "${ETHERPAD_DB_NAME}", + "charset": "utf8mb4" }, EOF