chore: improve configuration
This commit is contained in:
parent
20d9c94d16
commit
f83ffb2776
1 changed files with 5 additions and 1 deletions
|
@ -74,12 +74,16 @@ if ! [ -f settings.json ]; then
|
||||||
"port" :${ETHERPAD_PORT},
|
"port" :${ETHERPAD_PORT},
|
||||||
"skinName": "colibris",
|
"skinName": "colibris",
|
||||||
"sessionKey" : "${ETHERPAD_SESSION_KEY}",
|
"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",
|
"dbType" : "mysql",
|
||||||
"dbSettings" : {
|
"dbSettings" : {
|
||||||
"user" : "${ETHERPAD_DB_USERNAME}",
|
"user" : "${ETHERPAD_DB_USERNAME}",
|
||||||
"host" : "${ETHERPAD_DB_HOST}",
|
"host" : "${ETHERPAD_DB_HOST}",
|
||||||
"password": "${ETHERPAD_DB_PASSWORD}",
|
"password": "${ETHERPAD_DB_PASSWORD}",
|
||||||
"database": "${ETHERPAD_DB_NAME}"
|
"database": "${ETHERPAD_DB_NAME}",
|
||||||
|
"charset": "utf8mb4"
|
||||||
},
|
},
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue