4练习要求:
练习一:配置web服务器,当访问网站 www.haha.com 时显示:haha
练习二:配置web服务器,当访问网站 www.xixi.com/secret/ 时显示:this is secret
具体步骤:
1、配置yum源,挂载、安装httpd、mod_ssl包
[root@localhost ~]# mount /dev/sr0 /mnt/ #挂载[root@localhost ~]# yum install httpd -y #http安装包
[root@localhost ~]# yum install mod_ssl.x86_64 -y #ssl安装包
2.创建新ip,重启ens
[root@localhost ~]# nmtui #配置新ip
[root@localhost ~]# nmcli connection up ens160 #重启ens160
3.创建目录,在文件内写入内容
[root@localhost ~]# mkdir /www/{haha,xixi} #创建目录
[root@localhost ~]# echo hahaha > /www/haha/index.html #写入
[root@localhost ~]# echo this is secret xixi > /www/xixi/index.html
4. 设置DNS域名解析
vim /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.234.157 www.haha.com www.xixi.com
5.配置server文件
vim /etc/nginx/conf.d/test.conf
6.关闭防火墙,重启nginx服务
[root@localhost ~]# systemctl disable firewalld --now #关闭防火墙
[root@localhost ~]# systemctl restart nginx #重启nginx服务
7.验证