Fixes #11 - After creating keys the app needs to completely restart due to aggressive module caching

This commit is contained in:
Jamie Curnow
2018-09-12 11:14:06 +10:00
parent 4fe26ec4c0
commit efa1424cad
4 changed files with 71 additions and 45 deletions

View File

@ -3,4 +3,9 @@
mkdir -p /data/letsencrypt-acme-challenge
cd /app
node --abort_on_uncaught_exception --max_old_space_size=250 /app/src/backend/index.js
while :
do
node --abort_on_uncaught_exception --max_old_space_size=250 /app/src/backend/index.js
sleep 1
done