I want to create uWsgi socket in my project folder and not in /tmp/
Here’s my uWSGI config
[uwsgi]
socket = /tmp/uwsgi.sock #I want this in any other folder
#say in /home/me/Desktop/myDjangoApp/
chmod-socket = 666
processes = 1
master = true
vhost = true
no-site = true
But whenever I restart uWSGI with the socket created in my folder, it [fails].
Can’t I create the uwsgi.sock in other folder?
Well, I found an alternative solution for the same. I created the socket in localhost
Here is my uwsgi file