博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx之 nginx虚拟机配置
阅读量:6790 次
发布时间:2019-06-26

本文共 2670 字,大约阅读时间需要 8 分钟。

 

什么是虚拟主机:

虚拟主机是一种特殊的软硬件技术,它可以将网络上的每一台计算机分成多个虚拟主机,每个虚拟主机可以独立对外提供www服务,这样就可以实现一台主机对外提供多个web服务,每个虚拟主机之间是独立的,互不影响。

nginx可以实现虚拟主机的配置,nginx支持三种类型的虚拟主机配置。

1、基于域名的虚拟主机 (server_name来区分虚拟主机——应用:外部网站)
2、基于ip的虚拟主机, (一块主机绑定多个ip地址)
3、基于端口的虚拟主机 (端口来区分虚拟主机——应用:公司内部网站,外部网站的管理后台)

范例:

一、 基于域名的虚拟主机

1、配置通过域名区分的虚拟机

[root@mysql03 nginx]# cat conf/nginx.conf
worker_processes 1;

events {

worker_connections 1024;
}

http {

include mime.types;
default_type application/octet-stream;

server {

listen 80;
server_name www.nginx01.com;
location / {
root html;
index index.html index.htm;
}
}

server {

listen 80;
server_name www.nginx02.com;
location / {
root /root/html;
index index.html index.htm;
}
}
}

2、 为 域名为 www.nginx02.com 的虚拟机,创建 index 文件    

[root@mysql03 ~]# mkdir -p /root/html
[root@mysql03 ~]# cd /root/html/
[root@mysql03 html]# vi index.html
[root@mysql03 html]# cat index.html
<html>
<p>
this is my nginx
</p>
</html>

3、重新加载配置文件

[root@mysql03 nginx]# ./sbin/nginx -s reload

4、客户端配置路由映射

在 C:\Windows\System32\drivers\etc\hosts 文件中添加两行

10.219.24.26 www.nginx01.com

10.219.24.26 www.nginx02.com
如图:

5、 测试访问

浏览器输入:http://www.nginx01.com/

浏览器输入:http://www.nginx02.com/

 >成功!

 补充:如果配置不能正常访问, 试参考 http://blog.csdn/zhang123456456/article/details/73252148

二、 基于ip的虚拟主机

1. 一块网卡绑定多个ip

[root@mysql03 nginx]# ifconfig eth0:1 10.219.24.27
[root@mysql03 nginx]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0C:29:79:F4:02
inet addr:10.219.24.26 Bcast:10.255.255.255 Mask:255.0.0.0
...
eth0:1 Link encap:Ethernet HWaddr 00:0C:29:79:F4:02
inet addr:10.219.24.27 Bcast:10.255.255.255 Mask:255.0.0.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
2. 配置通过ip区分的虚拟机
[root@mysql03 nginx]# cat conf/nginx.conf
user root root; #说明:这里的user根据 自己的nginx.conf文件所在的目录的属主属性而定
worker_processes 1;

events {

worker_connections 1024;
}

http {

include mime.types;
default_type application/octet-stream;

server {

listen 10.219.24.26:80;
server_name www.nginx01.com;
location / {
root html;
index index.html index.htm;
}
}

server {

listen 10.219.24.27:80;
server_name www.nginx01.com;
location / {
root /root/html;
index index.html index.htm;
}
}
}
3. reopen nginx
[root@mysql03 nginx]# ./sbin/nginx -s reopen

补充:

-- 删除绑定的vip
ifconfig eth0:1 10.219.24.27 down

三、 基于端口的虚拟主机

配置通过端口区分的虚拟机

[root@mysql03 nginx]# cat conf/nginx.conf
user root root; #说明:这里的user根据 自己的nginx.conf文件所在的目录的属主属性而定
worker_processes 1;

events {

worker_connections 1024;
}

http {

include mime.types;
default_type application/octet-stream;

server {

listen 80;
server_name www.nginx01.com;
location / {
root html;
index index.html index.htm;
}
}

server {

listen 8080;
server_name www.nginx01.com;
location / {
root /root/html;
index index.html index.htm;
}
}
}

 

转载地址:http://cnogo.baihongyu.com/

你可能感兴趣的文章
《循序渐进学Docker》——导读
查看>>
《树莓派开发实战(第2版)》——1.8 使用复合视频显示器/TV
查看>>
编码之道:取个好名字很重要
查看>>
《树莓派开发实战(第2版)》——1.5 通过NOOBS刷写microSD卡
查看>>
《Python Cookbook(第3版)中文版》——1.7 让字典保持有序
查看>>
在 Linux 中设置 sudo 的十条 sudoers 实用配置
查看>>
Linux 有问必答:如何在 Linux 中永久修改 USB 设备权限
查看>>
《第三方JavaScript编程》——7.2 跨站脚本
查看>>
《师兄教你找工作——100场面试 20个offer背后的求职秘密》一导读
查看>>
《C++面向对象高效编程(第2版)》——第3章3.1 类概念的基础
查看>>
《 Python树莓派编程》——第2章 轻松掌握Linux 2.1 开始使用树莓派的Linux
查看>>
MySQL使用初步—mysql数据库的基本命令
查看>>
如何配置 MongoDB 副本集
查看>>
《Python核心编程(第二版)》——1.5 运行Python
查看>>
Node.js Undocumented(1)
查看>>
《C语言及程序设计》实践项目——程序的多文件组织
查看>>
《Vertica的这些事》系列文章
查看>>
React Native热更新方案
查看>>
排序算法之珠排序
查看>>
数据结构例程——从一个顶点到其余各顶点的最短路径
查看>>