练习要求:
搭建一个web服务器,客户端通过www.haha.com访问该网站时能够看到内容:this is haha
完成过程:
1. 创建新ip,重启ens
[root@localhost ~]# nmtui
[root@localhost ~]# nmcli connection up ens160
2.创建目录,写入要求内容
[root@localhost ~]# mkdir -p /www/haha
[root@localhost ~]# echo this is haha > /www/haha/index.html
3.DNS解析配置
[root@localhost ~]# vim /etc/hosts
4.配置server
[root@localhost ~]# vim /etc/nginx/conf.d/haha.conf
5.关闭防火墙,重启nginx服务 ,确认gentenforce状态
[root@localhost ~]# systemctl status firewalld --now #关闭防火墙
[root@localhost ~]# systemctl restart nginx #重启nginx服务
[root@localhost ~]# getenforce
Permissive