Web项目部署(Flask Angular2 Nginx)(2)

这里可以选择编辑原始配置文件,也可以在nginx/conf.d/下新建一个conf文件,因为如果该文件夹下有配置文件,会默认先用这个文件
新建一个配置文件

sudo vi /usr/local/nginx/conf/conf.d/flask_nginx.conf

flask_nginx.conf
修改http->server节点下 localhost和error_page 404的值如下:

# 监听80端口,用于前端访问 server { listen 80; server_name 39.105.61.38; location / { root /var/www/dist; index index.html index.html; } #error_page 404 /404.html; error_page 404 /; } # 将8098端口,定向到本机8090端口,用于访问flask server { listen 8098; server_name 39.105.61.38; location / { proxy_pass :8090; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } 4、部署

在nginx官网中下载nginx
把dist文件夹下的打包文件拷贝到nginx/html下并重命名为myProj
修改conf/nginx.conf文件

location / { root html/myProj; index index.html index.htm; }

启动nginx
在浏览器中输入localhost:80即可看到项目

五、注意事项

所有以上配置结束,可能依然访问不了(这就是让我折腾到半夜的问题)
经过排查,都没问题啊,始终是80端口可以访问,任何一个服务换到80都能访问,其他不行,听着酷玩乐队的歌,突然灵光一闪,看一下阿里云,果然,这里有个安全组,默认是关闭其他端口的,需要配置安全组。

1、阿里云服务器

怎么开放阿里云端口

开放了服务器的端口,访问端口不是 timeout 了,出现了 拒绝访问
果然还有centos的防火墙

2、防火墙配置

CentOS 7默认使用的是firewall作为防火墙,也可改为iptables防火墙。
firewall操作:

# service firewalld status; #查看防火墙状态

disabled 表明 已经禁止开启启动 enable 表示开机自启,inactive 表示防火墙关闭状态 activated(running)表示为开启状态

$ service firewalld start; 或者 #systemctl start firewalld.service;#开启防火墙 $ service firewalld stop; 或者 #systemctl stop firewalld.service;#关闭防火墙 $ service firewalld restart; 或者 #systemctl restart firewalld.service; #重启防火墙 $ systemctl disable firewalld.service#禁止防火墙开启自启 $ systemctl enable firewalld#设置防火墙开机启动 $ yum remove firewalld #卸载firewall

安装iptables防火墙及操作:

#yum install iptables-services#安装iptables防火墙 #vi /etc/sysconfig/iptables#编辑防火墙配置文件,开放3306端口

添加配置:

-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT #systemctl restart iptables.service #最后重启防火墙使配置生效 #systemctl enable iptables.service #设置防火墙开机启动

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/2759954ec30de50087d90ea17d0424f7.html