我想在我的项目文件夹中创建 uWsgi 套接字,而不是在 /tmp/
这是我的 uWSGI 配置
[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
但是每当我使用在我的文件夹中创建的套接字重新启动 uWSGI 时,它[fails]。我不能在其他文件夹中创建 uwsgi.sock 吗?