阿里云ecs(ubuntu16.04)部署flask应用,外网访问

首先利用Xshell连接阿里云服务器

1.更新软件源

安装完Ubuntu操作系统后,更新当前系统中可以升级的的软件包

$ sudo apt update

$ sudo apt upgrade


2.部署nginx

1.sudo add-apt-repository ppa:nginx/stable

2.sudo apt-get update

3.sudo apt-get install nginx

如果“add-apt-repository”命令在你的ubuntu版本中不存在的话,你需要安装“software-properties-common”包:

sudo apt-get install software-properties-common(查看版本:nginx -v) 

运行nginx:

root@asdas:/etc/init.d# sudo /etc/init.d/nginx start

[ ok ] Starting nginx (via systemctl): nginx.service.



3.Python虚拟环境

安装虚拟环境

 1.sudo apt install python-virtualenv

 2.sudo easy_install virtualenvwrapper

(注意:安装的顺序不能颠倒,virtualenvwrapper必须依赖于virtualenv.)

创建一个目录用来存放虚拟环境:

sudo mkdir /flask/root

创建一个python3.5的虚拟环境,并安装flask:

1.cd /flask/root

2.virtualenv -p /usr/bin/python3 py3env

3.source py3env/bin/activate(激活虚拟环境)

4.pip install flask

使用下面的代码创建hello.py文件:

1.root@asdas:/flask/root# vi hello.py  

2.在helle.py文件下写入以下代码:

from flask import Flask

app = Flask(__name__)

@app.route("/")

def hello():

        return "Hello World!"

if __name__ == "__main__":

app.run(host='0.0.0.0', port=8080) 

在虚拟环境中执行我们的flask应用:

(py3env) root@asdas:/flask/root# python hello.py

测试:打开另一个Xshell窗口,运行 curl -i http://0.0.0.0:8080/.你可以看到hello word.Ctrl+c 退出。

4.修改nginx配置

返回第一个Xshell窗口,Ctrl+c 退出hello.py,为了方便管理,我们把配置文件还是放在/flask/root目录下,然后在/etc/nginx/conf.d下做个链接。

创建一个我们应用使用的新配置文件:/flask/root/demoapp_nginx.conf:

(py3env) root@asdas:/flask/root#  vi demoapp_nginx.conf

在demoapp_nginx.conf文件输入:

server {

listen 80; server_name localhost(localhost替换你的阿里云公网IP);

charset utf-8;

client_max_body_size 75M;

location / {

             proxy_set_header X-Fforwarded-For $proxy_add_x_forwarded_for;

             proxy_set_header Host $host;

             proxy_set_header Host $host; proxy_pass http://127.0.0.1:8080;

            }

注意:这里地址填的是127.0.0.1,那么,flask绑定的ip也必须是127.0.0.1,而不是外网地址或内网地址。

将刚建立的配置文件使用符号链接到Nginx配置文件文件夹中,重启Nginx:

sudo ln -s /flask/root/demoapp_nginx.conf /etc/nginx/conf.d/root@asdas:~# sudo /etc/init.d/nginx start

[ ok ] Starting nginx (via systemctl): nginx.service.

5.安装gunicorn

1.pip install gunicorn

2.(py3env) root@asdas:/flask/root/# /flask/root//py3env/bin/gunicorn -w2 hello:app -b 0.0.0.0:8080

6.使用supervisor守护gunicorn

1.sudo apt-get install supervisor

2.echo_supervisord_conf > /etc/supervisor/supervisord.conf

修改/etc/supervisor/supervisord.conf,在结尾增加

[include]

files = /flask/root/demoapp_supervisor.conf

注意,一定要删掉[include]前面的分号。

修改/flask/root/demoapp_supervisor.conf的内容,全部内容如下(先要创建demoapp_supervisor.conf文件):

[program:demoapp]

command= /flask/root/py3env/bin/gunicorn -w 2 hello:app -b 0.0.0.0:8080

directory=/flask/root/

autostart=true

startsecs=10

startretries=10 

stdout_logfile=/flask/log/supervisor/supervisor.log  #这里的文件需要手动创建

stdout_logfile_maxbytes=50MB

stderr_logfile=/flask/log/supervisor/supervisor_err.log  #这里的文件也需要手动创建

stderr_logfile_maxbytes=50MB

杀掉supervisord,重新启动:

root@asdas :~# pgrep -ax supervisord

748 /usr/bin/python /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf

root@asdas :~# kill 748

root@asdas :~# supervisord -c /etc/supervisor/supervisord.conf

root@asdas :~# supervisorctl -c /etc/supervisor/supervisord.conf status demoapp             RUNNING pid 1153, uptime 0:00:11

root@asdas :~#

7.阿里云服务器安全组设置

登陆阿里云服务器,点击控制台,点击云服务器,点击左侧安全与网络,点击安全组,点进去后点右边的配置规则配置再点右上角的添加安全组规则,只需要填写端口范围和授权对象就可以.端口范围填写规范是:端口/端口,授权对象就填0.0.0.0/0.例如:


布置完后访问你的外网IP例如,http://10.10.10.10:8080。可以看到 hello world。



相关资料:

阿里云ecs(ubuntu16.04)使用nginx、gunicorn和supervisor部署flask应用 -

你可能感兴趣的:(阿里云ecs(ubuntu16.04)部署flask应用,外网访问)