Question

Issues getting nginx to serve my flask app

I have a flask app that I would like to serve via a DO Droplet. I have followed How To Serve Flask Applications with Gunicorn and Nginx on Ubuntu 22.04

This is my folder structure

root/ 
└── baseweb/
     ├── venv
     ├── app.py 
     └── app/ 
         ├── routes.py 
         └── templates/ 
             └── index.html

app.py looks like this

from app import app

if __name__ == "__main__":
    app.run(host='0.0.0.0', debug=True)

I have created a baseweb service

[Unit]
Description=Gunicorn instance to serve myproject
After=network.target

[Service]
User=root
Group=www-data
WorkingDirectory=/root/baseweb
Environment="PATH=/root/baseweb/venv/bin"
ExecStart=/root/baseweb/venv/bin/gunicorn --workers 1 --bind unix:baseweb.sock app:app

[Install]
WantedBy=multi-user.target

and my nginx configuration (/etc/nginx/sites-available/baseweb)

server {
    listen 80;
    server_name baserank.net www.baserank.net

    location / {
        proxy_pass http://unix:/root/baseweb/baseweb.sock;
    }
}

i have the DNS set up at baserank.net to point to the IP address

When i simply run app.py using my venv, i can access my flask app via http://68.183.68.148:5000/

if I run gunicorn --bind 0.0.0.0:5000 app:app i can also access my app via the same IP.

But when i try to access via nginx (via http://68.183.68.148 without running the app in console), i get

502 Bad Gateway

nginx/1.22.0 (Ubuntu)

I have spent hours trying to adjust settings, but i have no idea where this is going wrong - so any help is very much appreciated.


Submit an answer


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!

Sign In or Sign Up to Answer

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.

KFSys
Site Moderator
Site Moderator badge
February 22, 2023

Hey @kristian60,

Try configuring your Nginx config the following way:

server {
  listen 80;
  server_name baserank.net www.baserank.net;
  
  location / {
    proxy_pass https://127.0.0.1:5000;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
  }
}

Please do let me know how it goes.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

card icon
Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Sign up
card icon
Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We’d like to help.

Learn more
card icon
Become a contributor

You get paid; we donate to tech nonprofits.

Learn more
Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow – whether you’re running one virtual machine or ten thousand.

Learn more ->
DigitalOcean Cloud Control Panel
Get started for free

Enter your email to get $200 in credit for your first 60 days with DigitalOcean.

New accounts only. By submitting your email you agree to our Privacy Policy.

© 2023 DigitalOcean, LLC.