1.安装
1 | yum install -y nginx // 可以root安装,CentOS |
2.修改配置文件
1 | // 配置文件:/etc/nginx/conf.d/default.conf |
3.修改运行时的用户(解决403 forbidden)
1 | // 配置文件:/etc/nginx/nginx.conf |
4.添加网站静态资源文件
1 | cp -r * /user/share/nginx/html |
5.启动nginx
1 | systemctl start nginx |
6.添加nginx开机启动
1 | systemctl enable nginx |