配置Apache服务器:
1.安装Apache,可以参考Linux 中yum的配置来安装:
yum install http* -y
2.修改SELinux:
setenforce 0
查看:
3.防火墙开放httpd服务
firewall-cmd --permanent --add-service=httpd
重启防火墙:
firewall-cmd --reload
查看防火墙:
firewall-cmd --list-all
4.修改Apache服务器的配置
新建测试文件:
vim /etc/httpd/conf.d/test.conf<Virtualhost *:80> ServerName server0.example.com DocumentRoot /var/www/html </Virtualhost>
其中:
ServerName 为域名
DocumentRoot 为html主页的路径
- PC官方版
- 安卓官方手机版
- IOS官方手机版