如何一台服务器虚拟多人用,使用服务器如何实现多台虚拟主机

使用服务器如何实现多台虚拟主机

发布时间:2020-10-15 15:10:36

来源:亿速云

阅读:85

作者:Leah

栏目:云计算

今天就跟大家聊聊有关使用服务器如何实现多台虚拟主机,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

服务器实现多台虚拟主机,主要有这三种方法:使用相同的IP地址,不同的端口;使用不同的IP地址;使用相同的IP和相同TCP端口,不同的主机头。

1、使用相同的IP地址,不同的端口

只需要一个IP,通过不同端口,来搭建空间server {

listen 80;

location / {

root html/abc;

index index.html index.htm index.php;

}

}

server {

listen 8080;

location / {

root html/cbd;

index index.html index.htm;

}

}

2、使用不同的IP地址

使用同一个端口,不同IP来实现。每个空间分配一个IP来做区分server {

listen 192.168.10.42:80;

location / {

root html/abc;

index index.html index.htm index.php;

}

}

server {

listen 192.168.10.52:80;

location / {

root html/cbd;

index index.html index.htm;

}

}

3、使用相同的IP和相同TCP端口,不同的主机头server {

listen 80;

server_name www.abc.com;

location / {

root html/web1;

index index.html index.htm;

}

}

server {

listen 80;

server_name www.cbd.com;

location / {

root html/web2;

index index.html index.htm;

}

}

看完上述内容,你们对使用服务器如何实现多台虚拟主机有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。

你可能感兴趣的:(如何一台服务器虚拟多人用)