Gunicorn(绿色独角兽)是一个Python WSGI的HTTP服务器 (web服务器)。
项目部署方式: nginx + gunicorn + flask
安装gunicorn: $ pip install gunicorn
安装gunicorn成功后,通过命令行的方式可以查看gunicorn的使用信息:
$ gunicorn -h # 查看命令行选项
$ gunicorn 运行文件名称:Flask程序实例名 # 直接运行,默认启动的127.0.0.1::8000
$ gunicorn -w 4 -b 127.0.0.1:5001 -D --access-logfile ./logs/log.txt 运行文件名称:Flask程序实例名 # 指定进程数和端口号。 -w:(worker)表示进程数。 -b:(bind)表示绑定ip地址和端口号。-D:表示守护进程方式启动(后台运行)
安装Nginx:
$ sudo apt-get install nginx
/usr/local/nginx/conf/nginx.conf(Nginx配置文件,配置Nginx):
# 。。