首先咱得有yum源和网络(得ping通百度啊)
mount /dev/sr0 /media
wget -O /etc/yum.repos.d/CentOS-aliyun.repo http://mirrors.aliyun.com/repo/Centos-7.repo
准备一台nginx服务器(192.168.35.17)
yum -y install nginx
#拷贝一份配置文件
cp /usr/share/nginx/nginx.conf.default /usr/share/nginx/nginx.conf
#输入y确认覆盖
vim /usr/share/nginx/nginx.conf
systemctl start nginx
搞一台php服务器(192.168.35.16)
yum -y install php php-fpm
vim /etc/php-fpm.d/www.conf
#下面的路径如果没有就创建
vim /var/www/html/index.php
输入
<?php
phpinfo();
启动
systemctl start php-fpm
测试
访问192.168.35.17/index.php