这里可以选择编辑原始配置文件,也可以在nginx/conf.d/下新建一个conf文件,因为如果该文件夹下有配置文件,会默认先用这个文件
新建一个配置文件
flask_nginx.conf
修改http->server节点下 localhost和error_page 404的值如下:
在nginx官网中下载nginx
把dist文件夹下的打包文件拷贝到nginx/html下并重命名为myProj
修改conf/nginx.conf文件
启动nginx
在浏览器中输入localhost:80即可看到项目
所有以上配置结束,可能依然访问不了(这就是让我折腾到半夜的问题)
经过排查,都没问题啊,始终是80端口可以访问,任何一个服务换到80都能访问,其他不行,听着酷玩乐队的歌,突然灵光一闪,看一下阿里云,果然,这里有个安全组,默认是关闭其他端口的,需要配置安全组。
开放了服务器的端口,访问端口不是 timeout 了,出现了 拒绝访问
果然还有centos的防火墙
CentOS 7默认使用的是firewall作为防火墙,也可改为iptables防火墙。
firewall操作:
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