【Linux】centos7安装nginx并配置web前端环境。
参照:
https://segmentfault.com/a/1190000015431830
https://juejin.cn/post/6844904134345228301
https://juejin.cn/post/6990643580809248781
1.安装nginx
~sudo yum install nginx(RedHat系列:Redhat、Centos、Fedora等)
sudo apt-get install nginx(Debian系列:Debian、Ubuntu等)
2.启动nginx
systemctl start nginx 启动
其他:
systemctl restart nginx 重启
systemctl stop nginx 停止
systemctl status nginx 查看当前状态
nginx -t 查看当前使用的配置文件
nginx -s reload 重新加载
3.修改nginx路径配置,/etc/nginx/nginx.conf,我自己的web项目放到了/srv/www/html下。
4.之后把打包好的前端项目放到nginx配置的目录下就ok。