1.安装nginx服务
yum -y install nginx
启动Nginx
service nginx start 或者 nginx
2.配置web网页文件:
vi /etc/nginx/nginx.conf
location /:指一个server里面没有其他的路径的时候,默认为/,即都进入到location里面访问,
root:location里面返回的页面的路径,即存放首页的路径
index:定义首页是哪个页面,上面配置的默认首页为index.html,如果没有找到index.html,那么就会去找index.htm
3.重启Nginx服务
service nginx restart 或者 service nginx reload 或者 nginx -s reload
4.配置Gunicorn:
gunicorn -D -w 4 -b 127.0.0.1:5000 app:app
其中
-w 4 表示4个进程
-b 127.0.0.1:5000 表示flask应用使用5000端口,开放5000用于ningx连接
app:app 前者代表启动程序文件名(不含.py), 后者为实例化对象命名即 app = Flask(name)