From 0bd7ef2ddc23bd6a6ba1cbeb0e64e19466fd69ca Mon Sep 17 00:00:00 2001 From: Caleb Ely Date: Mon, 16 Aug 2021 20:51:52 -0400 Subject: [PATCH] Rename gunicorn logs to not clobber logs w/ same name --- CHANGES.md | 1 + run-app.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9fd1858..7d5bc24 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ _Unreleased_ - Escape link info on update +- Rename gunicorn logs to not clobber other logs with the same name # 1.0.2 diff --git a/run-app.sh b/run-app.sh index ad214cc..bc0fa80 100644 --- a/run-app.sh +++ b/run-app.sh @@ -1,2 +1,2 @@ #!/usr/bin/env bash -gunicorn --bind 0.0.0.0:80 --workers 2 --log-level error --access-logfile /app/log/gunicorn.access.log --error-logfile /app/log/gunicorn.error.log wsgi:app +gunicorn --bind 0.0.0.0:80 --workers 2 --log-level error --access-logfile /app/log/webring.access.log --error-logfile /app/log/webring.error.log wsgi:app