linux
Fonchar
one by one
展开
-
Linux服务器——Nginx部署
VUE和REACT项目的部署通常会通过Nginx进行部署。 一、yum安装Nginx 1、安装 yum install nginx 2、设置开机启动 systemctl enable nginx 二、查看相关文件 whereis nginx 三、配置conf文件 cd /etc/nginx/ cd conf.d/ 1、进入conf.d之后创建配置文件: vi yourname.conf 2、按 i 进入编辑模式,粘贴代码: server { listen 80;原创 2020-08-08 22:35:50 · 319 阅读 · 0 评论 -
CentOS 7.x 配置防火墙
说到防火墙不得不提到CentOS的版本差异:6及以前的版本只能使用iptables,7以上的版本可以使用firewalld 与 iptables。 一、firewalld 跟 iptables 比起来至少有两大好处: firewalld可以动态修改单条规则,而不需要像iptables那样,在修改了规则后必须得全部刷新才可以生效; firewalld在使用上要比iptables人性化很多,即使不明白“五张表五条链”而且对TCP/IP协议也不理解也可以实现大部分功能。 二、firewalld 与 iptab原创 2020-08-08 05:56:40 · 154 阅读 · 0 评论