From 3730ca9bff30fba7d63befad978bbd76727b74f4 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Sat, 15 Aug 2020 02:13:47 -0500 Subject: [PATCH] Improve format disable ssl for node --- etherpad.sh | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/etherpad.sh b/etherpad.sh index ab87da6..04cdfb9 100644 --- a/etherpad.sh +++ b/etherpad.sh @@ -76,6 +76,10 @@ install_ifnot jq install_ifnot nodejs install_ifnot postgresql-$PSGVER +# Link LE certs on Etherpad directory +#chmod 755 /etc/letsencrypt/live +#ln -s /etc/letsencrypt/live/$DOMAIN $ETHERPAD_HOME/ + # Create DB echo -e "> Creating postgresql database for etherpad...\n" sudo -u postgres psql < $ETHERPAD_HOME/settings.json { "title": "Conference Etherpad", - "favicon": "favicon.ico", - - "skinName": "colibris" - + "skinName": "colibris", "ip": "0.0.0.0", - "port": 9001, - "showSettingsInAdminPage": true, - - "ssl" : { - "key" : "/etc/letsencrypt/live/$DOMAIN/privkey.pem", - "cert" : "/etc/letsencrypt/live/$DOMAIN/fullchain.pem", - }, - +// "ssl" : { +// "key" : "$ETHERPAD_HOME/$DOMAIN/privkey.pem", +// "cert" : "$ETHERPAD_HOME/$DOMAIN/fullchain.pem", +// "ca" : "$ETHERPAD_HOME/$DOMAIN/chain.pem" +// }, "dbType" : "postgres", "dbSettings" : { "user" : "$ETHERPAD_DB_USER", @@ -124,10 +122,8 @@ cat << SETTINGS_JSON > $ETHERPAD_HOME/settings.json "password": "$ETHERPAD_DB_PASS", "database": "$ETHERPAD_DB_NAME", "charset" : "utf8mb4" - } - + }, "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\nGet involved with Etherpad at https:\/\/etherpad.org\n", - "users": { "admin": { // 1) "password" can be replaced with "hash" if you install ep_hash_auth @@ -147,7 +143,7 @@ After=syslog.target network.target [Service] Type=simple User=$ETHERPAD_USER -Group=$ETHERPAD_USER +Group=Group=$ETHERPAD_USER WorkingDirectory=$ETHERPAD_HOME Environment=NODE_ENV=production ExecStart=$ETHERPAD_HOME/bin/run.sh