1、准备Web项目资源包
2、在CentOS服务器上创建存放项目的相关目录
$ cd /home/ $ mkdir toutiao
3、通过终端sftp,将Web资源包上传到,/home/toutiao/
sftp -P 端口 用户@服务器IP 示例: sftp -P 8081 user@192.168.20.249 >sftp cd /home/toutiao/ >sftp put /路径/案例一.zip
4、通过终端命令,解压上传到服务器上资源包
cd /home/toutiao/ unzip 案例一
解压包如下:
5、配置Nginx,在etc/nginx/conf.d/目录下修改 nginx.conf配置
6、修改/etc/selinux/config目录下SELINUX的状态,
将SELINUX=enforcing 修改为 SELINUX=disabled 状态
vi /etc/selinux/config #SELINUX=enforcing SELINUX=disabled
重启生效。reboot。
7、重启nginx
$ sudo systemctl enable nginx # 设置开机启动 $ sudo service nginx start # 启动 nginx 服务 $ sudo service nginx stop # 停止 nginx 服务 $ sudo service nginx restart # 重启 nginx 服务 $ sudo service nginx reload # 重新加载配置,一般是在修改过 nginx 配置文件时使用。
8、测试,在浏览器上输入ip地址,进行测试。