nginx虚拟主机搭建

虚拟主机使用的是特殊的软硬件技术,它把一台运行在因特网上的服务器主机分成一台台“虚拟”的主机,每台虚拟主机都可以是一个独立的网站,可以具有独立的域名,具有完整的Intemet服务器功能(WWW、FTP、Email等),同一台主机上的虚拟主机之间是完全独立的。从网站访问者来看,每一台虚拟主机和一台独立的主机完全一样。
利用虚拟主机,不用为每个要运行的网站提供一台单独的Nginx服务器或单独运行一组Nginx进程。虚拟主机提供了在同一台服务器、同一组Nginx进程上运行多个网站的功能。

本例实现一个nginx监听80和81两个端口,分别指向/data/site1和/data/site2 两个不同的站点。也可以为一台主机设置多个域名,这样在nginx上可以根据域名来做不同的虚拟主机。

配置

1、在/usr/local/nginx/conf 目录下建立一个conf.d 文件夹;然后在conf.d 下建立site1.conf和site2.conf文件:

Site1.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
listen 80;
server_name localhost;

#access_log off;
#error_log /data/logs/nginx/iisad.error.log;

index index.html index.shtml;
root /data/site1/;

location / {
root /data/site1;
index index.html index.htm;
}
}

Site2.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
listen 81;
server_name localhost;

#access_log off;
#error_log /data/logs/nginx/iisad.error.log;

index index.html index.shtml;
root /data/site2/;

location / {
root /data/site2;
index index.html index.htm;
}
}

2、在/data/下建立site1和site2文件夹,然后分别在其中创建一个index.html文件。

3、修改nginx配置文件nginx.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#user  nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;

events {
worker_connections 1024;
}

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

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

#gzip on;

include conf.d/*.conf;
}

4)测试:
在浏览器中输入:http://192.168.137.122/http://192.168.137.122:81/ 可以查看site1和site2下的两个index.html。