[Django]-Connect() to unix:/home/glenn/blog.sock failed (13: Permission denied) while connecting to upstream

7👍

So I discovered that the problem is that I was running debug as True (You cannot run with debug on while in production)
And then I also changed the read/write permissions since the user needs to have access to all the files within the directory, by using the command chmod og+x /home/lamnk

Leave a comment