[Django]-Gunicorn not running can't connect to sock file

15👍

Looks like the user that you are using to run gunicorn as a service (sammy) does not have permission to access the project folder.

You can check the folder permission with ls -l

To change them you can do:

sudo chown sammy:sammy /home/sammy/revamp

Leave a comment