当前位置: 首页 > article >正文

【http作业】

1.关闭防火墙

[root@localhost ~]# systemctl stop firewalld #关闭防火墙
[root@localhost ~]# setenforce 0

2.下载nginx包

[root@localhost ~]# mount /dev/sr0 /mnt #挂载目录
[root@localhost ~]# yum install nginx -y #下载nginx包
3.增加多条端口

[root@localhost ~]# nmcli connection modify ens160 ipv4.method manual ipv4.addresses 192.168.92.10/24 ipv4.gateway 192.168.88.2 ipv4.dns 192.168.88.2 +ipv4.addresses 192.168.88.20/24 +ipv4.addresses 192.168.88.30/24 #当前主机添加多地址

4.期货网卡

[root@localhost ~]# nmcli connection up ens160 #激活网卡
5.自定义nginx配置文件

[root@localhost ~]# vim /etc/nginx/conf.d/test_ip.conf #自定义nginx配置文件
server {
listen 192.168.88.10:80;
root /test/10;
location / {
index index.html;
}
}
server {
listen 192.168.88.20:80;
root /test/20;
location / {
index index.html;
}
}
server {
listen 192.168.88.30:80;
root /test/30;
location / {
index index.html;
}
}

[root@localhost ~]# mkdir /test/{10,20,30} -pv
mkdir: created directory ‘/test’
mkdir: created directory ‘/test/10’
mkdir: created directory ‘/test/20’
mkdir: created directory ‘/test/30’
[root@localhost ~]# echo this is 250 > /test/10/index.html
[root@localhost ~]# echo this is 250 > /test/20/index.html
[root@localhost ~]# echo this is 250 > /test/30/index.html


http://www.kler.cn/a/371792.html

相关文章:

  • Unity3D学习FPS游戏(3)玩家第一人称视角转动和移动
  • 代码随想录算法训练营第十二天(补) 二叉树| 二叉树理论知识、深度优先遍历、广度优先遍历
  • [机器学习]集成学习
  • 三周精通FastAPI:21 子依赖项和路径操作装饰器依赖项
  • STM32中的__HAL_RCC_GPIOA_CLK_ENABLE(); 这个为什么和普通的库函数不一样,前面有两个下划线?
  • ArcGIS必会的选择要素方法(AND、OR、R、IN等)位置选择等
  • Chrome异步编程
  • 深度学习数学基础之链式法则
  • 星巴克们需要找回节奏
  • 边缘计算【智能+安全检测】系列教程--agx orin解决RTC时间问题
  • python 轮子是什么
  • pytest脚本常用的执行命令
  • 【Gorm】传统sql的增删查改,通过go去操作sql
  • STM32 I2C通信:硬件I2C与软件模拟I2C的区别
  • 数据库OCP 19C要考哪两门
  • 【学习】ZLMediaKit试用
  • 利用前向勾子获取神经网络中间层的输出并将其进行保存(示例详解)
  • shodan5,参数使用,批量查找Mongodb未授权登录,jenkins批量挖掘
  • QT编辑框带行号
  • 迷你航拍高清智能无人机技术详解
  • 云服务器和物理服务器有区别吗?
  • docker使用简介
  • 【WRF数据处理】基于GIS4WRF插件将geotiff数据转为tiff(geogrid,WPS所需数据)
  • AI Agents - 自动化项目:计划、评估和分配
  • JAVA的设计模式都有那些
  • ppt演示如何计时?分享2个ppt使用技巧,轻松搞定ppt计时!