配置nginx虚拟主机不同端口和不同ip地址,和上编nginx基于域名配置虚拟主机博文类似,请先参考。

zxl.com域名不同端口,配置文件内容如下:

1
2
3
4
5
6
7
8
9
10
11
[root@zxl-nginx conf.d]# cat zxl.com.conf 
server {
listen 81;
server_name www.zxl.com zxl.com;
location / {
root /data/zxl;
index index.html index.htm;
access_log  logs/zxl.access.log;
error_log  logs/zxl.error.log;
 }
}

bbs.com域名不同端口,配置文件内容如下:

1
2
3
4
5
6
7
8
9
10
11
[root@zxl-nginx conf.d]# cat bbs.com.conf 
server {
listen 82;
server_name www.bbs.com bbs.com;
location / {
root /data/bbs;
index index.html index.htm;
access_log  logs/bbs.access.log;
error_log  logs/bbs.error.log;
 }
}

nginx端口查看,检测语法以及重新加载配置文件到内存中

1
2
3
4
5
6
7
8
[root@zxl-nginx conf.d]# netstat -nplt|grep nginx
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      3476/nginx          
tcp        0      0 0.0.0.0:81                  0.0.0.0:*                   LISTEN      3476/nginx          
tcp        0      0 0.0.0.0:82                  0.0.0.0:*                   LISTEN      3476/nginx
[root@zxl-nginx conf.d]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@zxl-nginx conf.d]# nginx -s reload

测试结果如下:

1
2
3
4
[root@zxl-nginx conf.d]# elinks http://www.zxl.com:81 --dump
                        This is a site www.zxl.com test!
[root@zxl-nginx conf.d]# elinks http://www.bbs.com:82 --dump
                        This is a site www.bbs.com test!

不同ip地址的虚拟主机配置,添加ip地址以及配置文件如下:

1
2
[root@zxl-nginx conf.d]# ifconfig eth0:1 192.168.33.132
[root@zxl-nginx conf.d]# ifconfig eth0:2 192.168.33.133

查看配置ip地址

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@zxl-nginx conf.d]# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:50:56:32:9b:32 brd ff:ff:ff:ff:ff:ff
    inet 192.168.33.131/24 brd 192.168.33.255 scope global eth0
    inet 192.168.33.132/24 brd 192.168.33.255 scope global secondary eth0:1
    inet 192.168.33.133/24 brd 192.168.33.255 scope global secondary eth0:2
    inet6 fe80::250:56ff:fe32:9b32/64 scope link 
       valid_lft forever preferred_lft forever

不同ip地址的虚拟主机配置文件如下:

ip地址192.168.33.132配置文件内容

1
2
3
4
5
6
7
8
9
10
11
[root@zxl-nginx conf.d]# cat zxl.com.conf 
server {
listen 192.168.33.132:80;
server_name www.zxl.com zxl.com;
location / {
root /data/zxl;
index index.html index.htm;
access_log  logs/zxl.access.log;
error_log  logs/zxl.error.log;
 }
}

ip地址192.168.33.133配置文件内容

1
2
3
4
5
6
7
8
9
10
11
[root@zxl-nginx conf.d]# cat bbs.com.conf 
server {
listen 192.168.33.133:80;
server_name www.bbs.com bbs.com;
location / {
root /data/bbs;
index index.html index.htm;
access_log  logs/bbs.access.log;
error_log  logs/bbs.error.log;
 }
}

检测nginx配置文件以及重新加载nginx

1
2
3
4
[root@zxl-nginx conf.d]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@zxl-nginx conf.d]# nginx -s reload
1
2
3
4
5
测试结果如下:
[root@zxl-nginx conf.d]# elinks http://192.168.33.132 --dump
     #This is a site www.zxl.com test! This is a site 192.168.33.132 test!
[root@zxl-nginx conf.d]# elinks http://192.168.33.133 --dump
     #This is a site www.bbs.com test! This is a site 192.168.33.133 test!

本文转载自:http://noodle.blog.51cto.com/2925423/1726416

nginx配置虚拟主机之不同端口和不同IP地址的更多相关文章

  1. nginx配置虚拟主机vhost的方法详解

    Nginx vhost配置,可实现基于ip.端口号.servername的虚拟主机,同时可避免直接修改主配置文件.在nginx下配置虚拟主机vhost非常方便.这篇文章主要介绍了nginx配置虚拟主机 ...

  2. nginx 配置虚拟主机

    文章转载自:http://www.ttlsa.com/html/1571.html 上篇说道我们的nginx是安装在/usr/local/nginx/ cd conf 我们现在把所有的虚拟主机放在一个 ...

  3. nginx 配置虚拟主机的三种方法

    nginx,一个server标签就是一个虚拟主机. 1.基于域名的虚拟主机,通过域名来区分虚拟主机——应用:外部网站 2.基于端口的虚拟主机,通过端口来区分虚拟主机——应用:公司内部网站,外部网站的管 ...

  4. windows 下 nginx 配置虚拟主机

    1. 在 nginx 的配置文件 nginx.conf 里面 引入虚拟主机配置文件,以后所有的虚拟主机配置文件都在写这个文件里 include       vhost.conf; (或者新建vhost ...

  5. nginx配置虚拟主机、反向代理和负载均衡

    为了实现这个功能,需要修改nginx的配置文件,将nginx.conf清理一下,使结构更清晰. worker_processes ; events { worker_connections ; } h ...

  6. nginx 配置虚拟主机访问PHP文件 502错误的解决方法

    最近配置Nginx 服务器虚拟主机 访问目录发现报502错误 百度了很多方法 都不管用  我擦 各种抓狂----- 原本Nginx配置如下: 网上找了很多方法: 查看日志   借助nginx的错误日志 ...

  7. Nginx笔记总结五:Nginx配置虚拟主机

    upstream proxy1 { server ; } upstream proxy2 { server ; } server { listen ; server_name www1.dlab.co ...

  8. nginx配置虚拟主机-端口号区分/域名区分

    Nginx实现虚拟机 可以实现在同一台服务运行多个网站,而且网站之间互相不干扰.同一个服务器可能有一个ip,网站需要使用80端口.网站的域名不同. 区分不同的网站有三种方式:ip区分.端口区分.域名区 ...

  9. nginx 配置虚拟主机( 基于端口 )

    一.创建网站目录及文件: [root@localhost data]# tree /data /data └── wwwroot ├── www.1.com_8080 │   └── index.ht ...

随机推荐

  1. Android开发学习笔记-GridView的动态显示

    1.添加GridItem布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout x ...

  2. Nginx 反向代理解决favicon404错误问题

    # set site favicon location /favicon.ico { root html; } OR location = /favicon.ico { log_not_found o ...

  3. tomcat 重启报错unregister mbean error javax.management.InstanceNotFoundException

    JAVA_OPTS='-Ddruid.registerToSysProperty=true' 多个应用部署到tomcat下需要在/bin/catalina.sh下添加上面这句话 添加位置在‘cygwi ...

  4. 排列2(全排列next_permutation 注意格式)

    排列2 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...

  5. 接口测试之JMeter初探

    1.JMeter安装配置 )登录 http://jmeter.apache.org/download_jmeter.cgi ,下载与自己的平台相对应文件: )安装JDK(.6以上),配置环境变量JAV ...

  6. jquery easyui datagrid 无滚动条,datagrid 没垂直滚动条

    jquery easyui datagrid 无滚动条,datagrid 没垂直滚动条 ============================== 蕃薯耀 2018年2月6日 http://www. ...

  7. EventHandler中如何提升用户权限(模拟管理员权限)

    不论是在工作流或是EventHandler中,我们经常希望模拟管理员权限,从而可以通过程序自定义列表项的权限. 在工作流中可以用如下代码来提升权限:(以下代码实现的功能是断开列表项所继承的权限,除管理 ...

  8. Selenium 管理 Cookies

    使用 Selenium ,还可以方便地对 Cookies 进行操作,例如获取.添加 .删除 Cookies 等 from selenium import webdriver browser = web ...

  9. error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version

    更新的软件可以解决 TortoiseGit-preview-2.5.7.0-20180127-b2d00f8-64bit.msi和Git-2.16.2-64-bit.exe. 链接地址为: https ...

  10. Linux下用C获取当前时间

    Linux下用C获取当前时间,具体如下: 代码(可以把clock_gettime换成time(NULL)) ? 1 2 3 4 5 6 7 8 9 10 void getNowTime() {  ti ...