Socket need to be accessible by apache

This commit is contained in:
Alexandre Iooss 2020-09-28 21:31:50 +02:00 committed by club-med
parent 9ecd876923
commit 6f60de1838
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ python manage.py collectstatic --no-input
# harakiri parameter respawns processes taking more than 20 seconds
# max-requests parameter respawns processes after serving 5000 requests
# vacuum parameter cleans up when stopped
uwsgi --socket "$(pwd)/uwsgi.sock" --chmod-socket=600 --master --plugins python3 \
uwsgi --socket "$HOME/www/uwsgi.sock" --chmod-socket=666 --master --plugins python3 \
--module med.wsgi:application --env DJANGO_SETTINGS_MODULE=med.settings \
--processes 4 --harakiri=20 --max-requests=5000 --vacuum \
--static-map /static="$(pwd)/static" --protocol=fastcgi