dnf install httpd -y
修改/etc/httpd/conf/httpd.conf文件
将99行的改为如下配置
然后创建文件夹/tengbaiwan ,在其中创建一个index.html文件
写入内容到index.html 中
然后在 /etc/httpd/conf.d/下面 创建一个配置文件 host.conf
写入如下内容
<directory "/tengbaiwan"> #这个是开放访问权限的
allowoverride none
require all granted
</directory><virtualhost 192.168.28.130:80> # 访问ip为192.168.28.130 监听端口为80
servername 192.168.28.130
documentroot /tengbaiwan #访问该ip时 自动跳转到/tengbaiwan/index.html 中
</virtualhost>
systemctl start httpd --------启动服务
systemctl stop firewalld ---------- 关闭防火墙
setenforce 0 关闭selinux防火墙
curl 192.168.28.130