配置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. QT基础:QT 定时器学习

    定时器在编程中经常要用到,有必要学习一下,记记笔记! Qt中定时器的使用有两种方法,一种是使用QObject类提供的定时器,还有一种就是使用QTimer类. 1.QObject中的定时器的使用,需要用 ...

  2. 二维码解析:使用 JavaScript 库reqrcode.js解析二维码

    上次使用QRCode.js可以来生成二维码,但是我没有找到有文档说明可以对存在的二维码进行扫描解析其中的内容. 幸亏查找到了可行的解决方案,而且很好使哦!就是reqrcode.js 地址:https: ...

  3. 虚拟机中安装linux系统步骤

    参考:http://blog.csdn.net/u013111221/article/details/50856934 后面参考:http://blog.csdn.net/chenweitang123 ...

  4. linux环境中安装NRPE插件执行远程"本地资源"检查?NRPE安装?

    需求描述: 在安装完nagios之后,需要对本地资源进行监控,比如磁盘空间的使用,进程数,swap空间,等等.这些都不是通过网络提供出来的, 所以,都是本地资源,可以通过NRPE插件实现在客户端中采集 ...

  5. Linux Shell 通配符、元字符、转义符使用实例介绍

    https://www.cnblogs.com/chengmo/archive/2010/10/17/1853344.html

  6. 关于UIGestureRecognizerState

    UIGestureRecognizerState的定义如下 typedef enum { UIGestureRecognizerStatePossible, UIGestureRecognizerSt ...

  7. Python 统计代码量

    #统计代码量,显示离10W行代码还有多远 #递归搜索各个文件夹 #显示各个类型的源文件和源代码数量 #显示总行数与百分比 import os import easygui as g #查找文件 def ...

  8. WAF Bypass 笔记(SQL注入篇)

    0x01 背景 waf Bypass 笔记 0x02 服务器特性 1.%特性(ASP+IIS) 在asp+iis的环境中存在一个特性,就是特殊符号%,在该环境下当们我输入s%elect的时候,在WAF ...

  9. Ajax 结果提取

    Python 如何提取 Ajax 真正响应的内容: 以 https://m.weibo.cn/u/2830678474 这个网页为例,选择其中一个 Ajax 请求,找到请求的URL和传递的参数 imp ...

  10. c++学习笔记—动态内存与智能指针浅析

    我们的程序使用内存包含以下几种: 静态内存用来保存局部static对象.类static数据成员以及定义在任何函数之外的变量,在使用之前分配,在程序结束时销毁. 栈内存用来保存定义在函数内部的非stat ...