From 1b55739e5762f31acbf6329a8ea6e825f6a90430 Mon Sep 17 00:00:00 2001 From: Tim Considine Date: Sat, 29 Jan 2022 12:11:31 +0200 Subject: [PATCH] first commit --- supervisor/app.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 supervisor/app.conf diff --git a/supervisor/app.conf b/supervisor/app.conf new file mode 100644 index 0000000..80ec1ef --- /dev/null +++ b/supervisor/app.conf @@ -0,0 +1,13 @@ +[program:app] +priority=5 +directory=/app/code +environment=HOME=/app/code +command=node /app/code/server.js +user=cloudron +autostart=true +autorestart=true +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 +