安装nginx实现多ip访问多网站

一.首先安装nginx

c 复制代码
[root@server nginx]# systemctl stop firewalld   关防火墙
[root@server nginx]# setenforce 0    关selinux
[root@server nginx]# mount /dev/sr0 /mnt   挂载点
[root@server nginx]# dnf install nginx -y   安装nginx

二,添加地址

c 复制代码
[root@server nginx]# setenforce 0               #关闭selinux

[root@server nginx]# nmtui                    #写多IP

切换手动模式

将ip改为192.168.146.129和192.168.146.130

c 复制代码
[root@server nginx]# nmcli connection up ens160  #重启nmtui
[root@server nginx]# ip a   检验

编辑html

c 复制代码
[root@server nginx]#vim /etc/nginx/conf.d/test_ip.conf #编辑
[root@server nginx]# mkdir /test/{100,129,200} -pv #创建文件
[root@server nginx]# echo this is 130 > /test/129/index.html

[root@server nginx]# echo this is 139 > /test/100/index.html

[root@server nginx]# echo this is 140 > /test/200/index.html #根据配置在主机创建数据文件

[root@server nginx]# systemctl restart nginx       #重启
相关推荐
忍界英雄4 小时前
在基于go开发的web应用中加入Nginx反向代理
nginx·golang
hanniuniu134 小时前
动态威胁场景下赋能企业安全,F5推出BIG-IP Next Web应用防火墙
网络协议·tcp/ip·安全
小何学计算机5 小时前
Nginx 配置基于主机名的 Web 服务器
服务器·前端·nginx
冷眼看人间恩怨5 小时前
【Java】揭秘网络编程:深入探索其无尽奥秘与魅力
java·开发语言·tcp/ip·udp·tcp
IT-民工211106 小时前
LVS Nginx HAProxy的优缺点
运维·nginx·lvs
小何学计算机6 小时前
Nginx 配置基于IP 地址的 Web 服务器
前端·tcp/ip·nginx
happy_king_zi6 小时前
nginx代理websocket服务
运维·websocket·nginx
晓翔仔7 小时前
SSL/TLS 密码套件漏洞分析以及修复方法
服务器·网络·nginx·安全·tomcat·ssl·密码套件
小何学计算机8 小时前
Nginx配置基于端口的 Web 服务器
服务器·前端·nginx
hanzhuhuaa9 小时前
Linux 查看 nginx 安装目录和配置文件路径
linux·nginx