多ip访问网站

多ip访问网站

安装nginx

[root@localhost ~]# dnf install nginx -y

关闭防火墙,sulinux

[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0

添加多IP(这里使用图形化模式)

[root@localhost ~]# nmtui
[root@localhost ~]# nmcli connection up ens160




撰写配置文件

[root@localhost ~]# vim /etc/nginx/conf.d/test_ip.conf
server {
        listen 192.168.36.100:80;
      # server_name
        root /test/100;
        location / {
                index index.html;
        }
}
server{
        listen 192.168.36.200:80;
        #server_name
        root /test/200;
        location / {
                index index.html;
        }
}

创建存放ip显示内容的目录

[root@localhost ~]# mkdir /test/{100,200} -pv

像两个ip网页写入内容

[root@localhost ~]# echo this is 1 > /test/100/index.html
[root@localhost ~]# echo this is 2 > /test/200/index.html

重启nginx服务

[root@localhost ~]# systemctl restart nginx

测试

[root@localhost ~]# curl 192.168.36.100
this is 1
[root@localhost ~]# curl 192.168.36.200
this is 2


相关推荐
IT枫斗者21 分钟前
如何解决Java EasyExcel 导出报内存溢出
java·服务器·开发语言·网络·分布式·物联网
lxkj_202427 分钟前
修改ffmpeg实现https-flv内容加密
网络协议·https·ffmpeg
air_72938 分钟前
实验四:构建园区网(OSPF 动态路由)
服务器·网络·智能路由器
千羽星弦1 小时前
Apache和HTTPS证书的生成与安装
网络协议·https·apache
IDC02_FEIYA1 小时前
Discuz论坛网站管理员的默认用户名admin怎么修改啊?
服务器·web
勤奋的小王同学~1 小时前
(计算机网络)期末
服务器·网络·计算机网络
世纪天龙1 小时前
如何选择服务器
运维·服务器
Wang's Blog2 小时前
Linux: 任务的定时与延期
linux·服务器
熬了夜的程序员2 小时前
Linux 下的 AWK 命令详细指南与示例
linux·运维·服务器
全栈小53 小时前
【PHP】部署和发布PHP网站到IIS服务器
服务器·开发语言·php