如何使用flask / uwsgi / nginx服务器管理内容和python代码?

时间:2018-06-11 08:42:40

标签: python nginx flask uwsgi

作为实时网络服务器运行Flask几天之后,我了解到这不是一个聪明的事情:经过几个小时的不活动后服务器就死了,即使我使用了最简单的设置(一页,没有python代码) )。 谷歌搜索我发现Flask并不打算用作生产服务器,一个好的做法是将它与例如它结合起来。 Nginx和uWSGI。所以我跟着 this guide它似乎运行良好。 但现在我不知道如何重新启动,刷新或重新加载发布我添加到内容或python代码的内容所需的任何内容。在保存文件后(在调试模式下)自动重新加载Flask服务器,我现在有三个引擎在运行。在终端重新启动nginx不起作用,我已经尝试过了。

请有人帮助这个菜鸟吗?

TIA !!

uwsgi_conf.ini:

============================

[uwsgi]

chdir = /home/pi/sampleApp
module = sample_app:first_app

master = true
processes = 1
threads = 2

uid = www-data 
gid = www-data
socket = /tmp/sample_app.sock
chmod-socket = 664
vacuum = true

die-on-term = true

============================

nginx.conf:

============================

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

============================

sample_app_proxy:

============================

server {
 listen 80;
 server_name localhost;

 location / { try_files $uri @app; }
 location @app {
 include uwsgi_params;
 uwsgi_pass unix:/tmp/sample_app.sock;
 }
}

============================

2 个答案:

答案 0 :(得分:1)

当与Flask一起使用时,Nginx充当代理服务器,这意味着当您想要重新加载Flask应用程序时无需重新启动它。这是你需要照顾的uWSGI,因为uWSGI位于Flask应用程序和Nginx之间,负责将所有请求转发到你的应用程序,并运行它。

解决方案1 ​​

其中一种常见方法是在uwsgi_conf.ini中添加以下内容:

py-autoreload = 1

这将告诉uWSGI它需要每秒监视文件时间戳并在触发后重新加载应用程序。

解决方案2

向uWSGI Master FIFO发送graceful reload命令:

将以下内容添加到uwsgi_conf.ini

master-fifo = /var/run/flask_uwsgi_fifo

然后在完成Flask源文件更改后重新加载uWSGI:

$ echo r > /var/run/flask_uwsgi_fifo

解决方案3

解决方案2 类似,但是通过touch-reload

将以下内容添加到uwsgi_conf.ini

touch-reload = /var/run/flask_touch

然后通过以下方式重新加载您的应用:

$ touch /var/run/flask_touch

解决方案4

SIGHUP发送到uWSGI pid文件。

将以下内容添加到uwsgi_conf.ini

safe-pidfile = /tmp/flask.pid

然后通过以下方式重新加载您的应用:

$ kill -HUP `cat /tmp/flask.pid`

$ uwsgi --reload /tmp/flask.pid

答案 1 :(得分:0)

uwsgi是托管应用程序的部分,因此如果应用程序发生更改,则需要重新启动它。

对于自动重新加载,您可以尝试以下答案:https://stackoverflow.com/a/41529718/187292