1.要求搭建web服务器,能够访问到网页内容为“小胖,你咋这么胖呢!”
#mount /dev/sr0 /mnt
#vim /etc/yum.repos.d/base.repo
[BaseOS]
name=BaseOS
baseurl=file:///mnt/BaseOS
gpgcheck=0
[AppStream]
name=AppStream
baseurl=file:///mnt/AppStream
gpgcheck=0
#yum install httpd -y
#systemctl stop firewalld
#setenforce 0
#systemctl start httpd
#ll /var/www/html
#echo “小胖,你咋这么胖呢!” > /var/www/html/index.html
#systemctl restart httpd
2.要求搭建web服务器,创建基于域名的虚拟机,能使用www.xiaopang.com和www.dapang.com访问各自的网站存放路径分别为/xiaopang和/dapang,内容自定。
自定义配置
在host文件夹内修改:
显示xiaopang的内容
搭建web服务器
最新推荐文章于 2024-01-17 22:43:25 发布
本文档指导如何搭建Web服务器并创建基于域名的虚拟主机。首先,通过配置yum源安装httpd,关闭防火墙,禁用Selinux,启动httpd服务,并设置网页内容。接着,演示了如何设置两个虚拟主机www.xiaopang.com和www.dapang.com,分别指向/xiaopang和/dapang目录,实现不同域名访问不同内容。
摘要由CSDN通过智能技术生成