1. 程式人生 > >使用nginx+uWSGI部署flask應用

使用nginx+uWSGI部署flask應用

nginx配置檔案一般放在 /etc/nginx/sites-enabled 或者 /etc/nginx/conf.d 這兩個資料夾下面,後序名為 .conf,最簡單的配置如下:

server {
    listen 5000;
    server_name localhost;
    charset utf-8;

    location / {
         include uwsgi_params;
         uwsgi_pass 127.0.0.1:3031;
     }
}

nginx基本命令:

service nginx start

service nginx restart

nginx -s reload

nginx -s stop

uwsgi的flask最簡單配置如下:

[uwsgi]
socket=127.0.0.1:3031
wsgi-file=/path/to/your/project/run.py
callable=app
processes=4
threads=2

uwsgi配置使用方式:

uwsgi uwsgi.ini