I’m getting a 502 bad gateway on nginx, and the following on the logs: connect() to …myproject.sock failed (No such directory or file /home/nickname/myproject/myproject.sock) while connecting to upstream. Although I went to create the file “myproject.sock” in the myproject directory which gives me (13: Permission denied) error.
My working dir (myproject) is in /home/nickname dir. And I also created myprojectenv in the /home/nickname directory as well, making it 2 directory in the /home/nickname
Also the chmod-socket was 660 but I changed it to 666 thinking it was a privileges issue, but I still have an error 502.
/myproject/myproject.ini
[uwsgi]
module = wsgi:app
master = true
processes = 5
socket = myproject.sock
chmod-socket = 666
vacuum = true
die-on-term = true
/etc/systemd/system/myproject.service
[Unit]
Description=uWSGI instance to serve myproject
After=network.target
[Service]
User=nickname
Group=www-data
WorkingDirectory=/home/nickname/myproject
Environment="PATH=/home/nickname/myprojectenv/bin"
ExecStart=/home/nickname/myprojectenv/bin/uwsgi --ini myproject.ini
[Install]
WantedBy=multi-user.target
/etc/nginx/sites-available/myproject
server {
listen 80;
server_name 163.172.172.76;
location / {
include uwsgi_params;
uwsgi_pass unix:/home/nickname/myproject/myproject.sock;
}
}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
ugh me too. My only deviation from the tutorial was to put the folder in the “shared” directory.
I assume you followed the DigitalOcean tutorial “How To Serve Flask Applications with uWSGI and Nginx on Ubuntu 14.04”. It seems like few few people are running into the same issue. Take a look at this answer: http://stackoverflow.com/questions/29872174/wsgi-nginx-error-permission-denied-while-connecting-to-upstream