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;
}
}
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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
ugh me too. My only deviation from the tutorial was to put the folder in the “shared” directory.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.