CE2022/3/23第一次作业
1、要求搭建web服务器,能够访问在网页内容为“小胖,你咋这么胖呢!”yum install httpd -ysystemctl stop firewalldsetenforce 0vim /etc/httpd/conf.d/vhosts.confmkdir /xiaopangecho 小胖,你咋这么胖呢!>/xiaopang/index.htmlsystemctl restart http
1、要求搭建web服务器,能够访问在网页内容为“小胖,你咋这么胖呢!”
yum install httpd -y
systemctl stop firewalld
setenforce 0
vim /etc/httpd/conf.d/vhosts.conf
mkdir /xiaopang
echo 小胖,你咋这么胖呢!>/xiaopang/index.html
systemctl restart httpd
2、要求搭建web服务器,创建基于域名的虚拟机,能够使用www.xiaopang.com和www.dapang.com访问各自的网站存放路径分别为/xiaopang和/dapang,内容自定。
mkdir /{dapang,xiaopang}
systemctl restart httpd
3、创建虚拟目录真实物理位置在/usr/local/hehe,内容自定
vim /etc/httpd/conf.d/vhosts.conf
4、创建虚拟目录真实物理位置在/usr/local/maomao,内容自定,但允许abc 和xyz用户通过密码访问。
vim /etc/httpd/conf.d/vhosts.conf
htpasswd -c /usr/local/maomao abc
htpasswd -c /usr/local/maomao xyz
systemctl restart httpd
综合练习:请给openlab搭建web网站
网站需求:
1、基于域名www.openlab.com可以访问网站内容为 welcome to openlab!
2、给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,基于www.openlab.com/student网站访问学生信息,www.openlab.com/data网站访问教学资料,www.openlab.com/money网站访问缴费网站。
3、要求:
(1)学生信息网站只有song和tian两个可以访问,其他用户不能访问。
(2)访问缴费网站实现数据加密基于https访问。
vim /etc/httpd/conf.d/vhosts.conf
更多推荐
所有评论(0)