Running a flask app with nginx and gunicorn

前端 未结 1 391
耶瑟儿~
耶瑟儿~ 2020-12-12 18:18

I\'m new at this and have only been using nginx to serve static files. I have now installed flask and gunicorn. If I run gunicorn -b 127.0.0.2:8000 hello:app an

相关标签:
1条回答
  • 2020-12-12 19:12

    This is how I serve my flask apps in Nginx:

    Run gunicorn daemonized using a socket:

      sudo gunicorn app:app --bind unix:/tmp/gunicorn_flask.sock -w 4 -D
    

    Related nginx config:

        upstream flask_server {
            # swap the commented lines below to switch between socket and port
            server unix:/tmp/gunicorn_flask.sock fail_timeout=0;
            #server 127.0.0.1:5000 fail_timeout=0;
        }
        server {
            listen 80;
            server_name www.example.com;
            return 301 $scheme://example.com$request_uri;
        }
    
        server {
            listen 80;
            client_max_body_size 4G;
            server_name example.com;
    
            keepalive_timeout 5;
    
            # path for static files
            location  /static {
                alias /path/to/static;
                autoindex on;
                expires max;
            }
    
            location / {
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header Host $http_host;
                proxy_redirect off;
    
                if (!-f $request_filename) {
                    proxy_pass http://flask_server;
                    break;
                }
            }
        }
    
    }
    
    0 讨论(0)
提交回复
热议问题