From 80a7b57dc621dfefaa967e3fe212df7fff064ba1 Mon Sep 17 00:00:00 2001 From: Joost Agterhoek Date: Wed, 9 Jul 2025 22:19:16 +0200 Subject: [PATCH] tidying up --- notes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notes.md b/notes.md index 1a9ffd5..c7b7c98 100644 --- a/notes.md +++ b/notes.md @@ -15,10 +15,10 @@ Documentation: https://docs.gunicorn.org/en/stable/run.html # How to run currently without systemd service ```bash -ssh joost@joostagterhoek.nl +ssh [user]@[site].nl sudo su -sudo -i -u my_webapp -cd /var/www/my_webapp/www +sudo -i -u [account running app] +cd [path to flask app] . ./env/bin/activate gunicorn --bind 0.0.0.0:8000 'flask_soc_site:create_app()' --error-logfile gunicorn.error.log --log-level error --capture-output