Nginx虚拟主机 (基于域名 基于端口 基于ip)

Nginx虚拟主机

  • 基于域名的虚拟主机
  • 基于IP地址的虚拟主机
  • 基于端口的虚拟主机

一,安装DNS域名解析服务器

1,安装bind服务器

[[email protected] ~]# yum install bind -y

2,修改主配置文件(named.conf)

[[email protected] ~]# vim /etc/named.conf
options {
                listen-on port 53 { any; };          ##监听所有
                listen-on-v6 port 53 { ::1; };
                directory       "/var/named";
                dump-file       "/var/named/data/cache_dump.db";
                statistics-file "/var/named/data/named_stats.txt";
                memstatistics-file "/var/named/data/named_mem_stats.txt";
                recursing-file  "/var/named/data/named.recursing";
                secroots-file   "/var/named/data/named.secroots";
                allow-query     { any; };           ##允许所有

3,修改区域配置文件(named.rfc1912.zones)

[[email protected] ~]# vim /etc/named.rfc1912.zones    ##配置区域配置文件
zone "kgc.com" IN {
                type master;
                file "kgc.com.zone";                ##kgc区域数据配置文件
                allow-update { none; };
};

zone "accp.com" IN {
                type master;
                file "accp.com.zone";             ##accp区域数据配置文件
                allow-update { none; };
};

4,修改区域数据配置文件(kgc.com.zone accp.com.zone)

[[email protected] ~]# cd /var/named/
[[email protected] named]# cp -p named.localhost kgc.com.zone    ##复制模板
[[email protected] named]# vim kgc.com.zone    ##修改区域配置文件

$TTL 1D
@       IN SOA  @ rname.invalid. (
                                                            0       ; serial
                                                            1D      ; refresh
                                                            1H      ; retry
                                                            1W      ; expire
                                                            3H )    ; minimum
                NS      @
                A       127.0.0.1
www IN  A       192.168.13.128     ##本机地址
[[email protected] named]# cp -p kgc.com.zone accp.com.zone  ##复制文件为accp区域数据配置文件
[[email protected] named]# systemctl start named      ##开启dns服务
[[email protected] named]# systemctl stop firewalld.service    ##关闭防火墙
[[email protected] named]# setenforce 0

5,创建两个网站的站点目录并添加首页内容

[[email protected] ~]# mkdir -p /var/www/html/accp   ##创建accp站点
[[email protected] ~]# mkdir -p /var/www/html/kgc     ##创建kgc站点
[[email protected] ~]# cd /var/www/html/
[[email protected] html]# ls
accp  kgc
[[email protected] html]# echo "this a accp web" > accp/index.html    ##创建首页内容
[[email protected] html]# echo "this a kgc web" > kgc/index.html        ##创建首页内容

二,在Windows上将LAMP所需压缩软件包共享出来(此处如有问题请看之前的博客相关文章)

三,在Linux上使用远程共享获取文件并挂载到mnt目录下

[[email protected] ~]# smbclient -L //192.168.100.3/   ##远程共享访问
Enter SAMBA\root‘s password: 

                Sharename       Type      Comment
                ---------       ----      -------
                LNMP-C7         Disk
[[email protected] ~]# mount.cifs //192.168.100.3/LNMP-C7 /mnt  ##挂载到/mnt目录下

四,编译安装Nginx

1,解压源码包到/opt下,并查看

[[email protected] ~]# cd /mnt    ##切换到挂载点目录
[[email protected] mnt]# ls
Discuz_X3.4_SC_UTF8.zip    nginx-1.12.2.tar.gz
mysql-boost-5.7.20.tar.gz  php-7.1.20.tar.gz
[[email protected] mnt]# tar zxvf nginx-1.12.2.tar.gz -C /opt   ##解压Nginx源码包到/opt下
[[email protected] mnt]# cd /opt/    ##切换到解压的目录下
[[email protected] opt]# ls
nginx-1.12.2  rh

2,安装编译需要的环境组件包

[[email protected] opt]# yum -y install gcc \                                       //c语言
gcc-c++ \                        //c++语言
pcre-devel \                     //pcre语言工具
zlib-devel                       //数据压缩用的函式库

3,创建程序用户nginx并编译Nginx

[[email protected] opt]# useradd -M -s /sbin/nologin nginx  ##创建程序用户,安全不可登陆状态
[[email protected] opt]# id nginx
uid=1001(nginx) gid=1001(nginx) 组=1001(nginx)
[[email protected] opt]# cd nginx-1.12.0/                 ##切换到nginx目录下
[[email protected] nginx-1.12.0]# ./configure \         ##配置nginx
> --prefix=/usr/local/nginx \        ##安装路径
> --user=nginx \                         ##用户名
> --group=nginx \                       ##用户组
> --with-http_stub_status_module     ##状态统计模块

4,编译和安装

[[email protected] nginx-1.12.0]# make     ##编译
...
[[email protected] nginx-1.12.0]# make install   ##安装
...

5,优化nginx启动脚本,以便于系统识别

[[email protected] nginx]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
##创建软连接让系统识别nginx启动脚本
[[email protected] nginx]# 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
[[email protected] nginx]# nginx      ##开启ngnix
[[email protected] nginx]# netstat -ntap | grep 80     ##查看端口,nginx已经开启
tcp   0   0 0.0.0.0:80      0.0.0.0:*   LISTEN   39620/nginx: master
[[email protected] nginx]# systemctl stop firewalld.service    ##关闭防火墙
[[email protected] nginx]# setenforce 0
[[email protected] nginx]# nginx                         ##开启

6,制作管理脚本,便于使用service管理使用

[[email protected] nginx]# cd /etc/init.d/   ##切换到启动配置文件目录
[[email protected] init.d]# ls
functions  netconsole  network  README
[[email protected] init.d]# vim nginx         ##编辑启动脚本文件

#!/bin/bash
# chkconfig: - 99 20                                    ##注释信息
# description: Nginx Service Control Script
PROG="/usr/local/nginx/sbin/nginx"           ##设置变量为nginx命令文件
PIDF="/usr/local/nginx/logs/nginx.pid"       ##设置变量PID文件 进程号为5346
case "$1" in
    start)
        $PROG                                              ##开启服务
        ;;
    stop)
        kill -s QUIT $(cat $PIDF)                    ##关闭服务
        ;;
    restart)                                                  ##重启服务
        $0 stop
        $0 start
        ;;
    reload)                                                  ##重载服务
        kill -s HUP $(cat $PIDF)
        ;;
    *)                                                           ##错误输入提示
                echo "Usage: $0 {start|stop|restart|reload}"
                exit 1
esac
exit 0
[[email protected] init.d]# chmod +x /etc/init.d/nginx    ##给启动脚本执行权限
[[email protected] init.d]# chkconfig --add nginx          ##添加到service管理器中
[[email protected] init.d]# service nginx stop                ##就可以使用service控制nginx
[[email protected] init.d]# service nginx start

7,或者方便systemctl管理,配置文件(为方便写一种即可)

[[email protected] ~]# vim /lib/systemd/system/nginx.service      ##创建配置文件

[Unit]
Description=nginx                                            ##描述
After=network.target                                        ##描述服务类型
[Service]
Type=forking                                                    ##后台运行形式
PIDFile=/usr/local/nginx/logs/nginx.pid            ##PID文件位置
ExecStart=/usr/local/nginx/sbin/nginx              ##启动服务
ExecReload=/usr/bin/kill -s HUP $MAINPID    ##根据PID重载配置
ExecStop=/usr/bin/kill -s QUIT $MAINPID       ##根据PID终止进程
PrivateTmp=true
[Install]
WantedBy=multi-user.target

[[email protected] ~]# chmod 754 /lib/systemd/system/nginx.service     ##设置执行权限
[[email protected] ~]# systemctl stop nginx.service       ##关闭
[[email protected] ~]# systemctl start nginx.service       ##开启

五,基于不同域名的虚拟主机

1,修改nginx配置文件信息

[[email protected] ~]# cd /usr/local/nginx/conf
[[email protected] conf]# vim nginx.conf     ##修改Nginx配置文件

server {
    listen      80;
    server_name  www.kgc.com;                       ##kgc网站
    charset utf-8;
    access_log  logs/www.kgc.com.access.log;   ##日志文件
    location / {
        root   /var/www/html/kgc;                             ##站点目录
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}   

server {
    listen      80;
    server_name  www.accp.com;                         ##accp网站
    charset utf-8;
    access_log  logs/www.accp.com.access.log;   ##日志文件
    location / {
        root   /var/www/html/accp;                            ##站点目录
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}
    [[email protected] conf]# service nginx restart    ##重启nginx服务

2,用测试机访问不同域名的网站


六,基于不同端口的虚拟主机

1,修改nginx配置文件信息

[[email protected] ~]# cd /usr/local/nginx/conf
[[email protected] conf]# vim nginx.conf     ##修改Nginx配置文件

server {
    listen      80;
    server_name  www.accp.com;
    charset utf-8;
    access_log  logs/www.accp.com.access.log;
    location / {
        root   /var/www/html/accp;
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

server {
    listen     192.168.13.138:8080;                                  ##修改监听端口为8080
    server_name  www.accp.com;
    charset utf-8;
    access_log  logs/www.accp8080.com.access.log;    ##日志文件修改为8080
    location / {
        root   /var/www/html/accp8080;                             ##8080端口的站点目录
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

2,创建accp8080站点目录,并创建首页内容

[[email protected] conf]# cd /var/www/html/                ##切换到站点目录中
[[email protected] html]# mkdir accp8080                   ##创建站点目录
[[email protected] html]# cd accp8080/
[[email protected] accp8080]# echo "this is accp8080 web" > index.html   ##创建首页内容
[[email protected] accp8080]# service nginx restart    ##重启Nginx服务

3,用测试机访问不同端口的网站


七,基于不同IP的虚拟主机

1,在虚拟机上添加一块网卡

192.168.13.138
192.168.13.133

2,修改dns区域数据配置文件

[[email protected] ~]# cd var/named/
[[email protected] named]# vim kgc.com.zone    ##修改kgc的区域数据配置文件
$TTL 1D
@       IN SOA  @ rname.invalid. (
                                                        0       ; serial
                                                        1D      ; refresh
                                                        1H      ; retry
                                                        1W      ; expire
                                                    3H )    ; minimum
                NS      @
                A       127.0.0.1
www IN  A       192.168.13.133                   ##地址为133
[[email protected] named]# vim accp.com.zone  ##修改accp的区域数据配置文件
$TTL 1D
@       IN SOA  @ rname.invalid. (
                                                            0       ; serial
                                                            1D      ; refresh
                                                            1H      ; retry
                                                            1W      ; expire
                                                            3H )    ; minimum
                NS      @
                A       127.0.0.1
www IN  A       192.168.13.138       ##地址为138
[[email protected] named]# systemctl restart named   ##重启dns服务

3,修改nginx配置文件信息

[[email protected] ~]# cd /usr/local/nginx/conf
[[email protected] conf]# vim nginx.conf     ##修改Nginx配置文件
    server {
    listen     192.168.13.133:80;      ##指定IP地址
    server_name  www.kgc.com;
    charset utf-8;
    access_log  logs/www.kgc.com.access.log;
    location / {
        root   /var/www/html/kgc;
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}   

server {
    listen      192.168.13.138:80;    ##指定IP地址
    server_name  www.accp.com;
    charset utf-8;
    access_log  logs/www.accp.com.access.log;
    location / {
        root   /var/www/html/accp;
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}
    [[email protected] conf]# service nginx restart    ##重启Nginx服务

4,用测试机访问不同IP的网站


谢谢阅读!

原文地址:https://blog.51cto.com/14469918/2448022

时间: 2024-10-08 03:52:51

Nginx虚拟主机 (基于域名 基于端口 基于ip)的相关文章

Nginx虚拟主机之域名,端口,IP

要nginx源码包请私信我 Nginx虚拟主机之域名 [[email protected] ~]# yum install bind -y 配置DNS主配置文件 [[email protected] ~]# vim /etc/named.conf options { listen-on port 53 { any; }; listen-on-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/var/named/d

Apache基于域名、端口、IP的虚拟主机配置(Centos 6.5)

虚拟主机:部署多个站点,每个站点,希望用不同的域名和站点目录,或者是不同的端口,不同的ip,需要虚拟主机功能.一句话,一个http服务要配置多个站点,就需要虚拟主机. 虚拟主机分类:基于域名.基于端口.基于ip:所谓的基于**,就是靠**来区分不同的站点,支持各种混合,N多个虚拟主机. 基于端口的虚拟主机配置如下: 创建环境: 站点目录 域名 /var/html/blog blog.bqh123.com /var/html/bbs bbs.bqh123.com [[email protected

nginx配置基于域名、端口、IP的虚拟主机

1.基于域名的虚拟主机: 绝大多数企业对外提供服务的网站使用的都是基于域名的主机,通过不同的域名区分不同的虚拟主机. 首先我们进入安装nginxd的目录下:/application/nginx-1.6.3/conf 我们去除掉默认配置文件里的注释和空行并重定向到nginx.conf文件里,同时我们需要配置如下: egrep -v "#|^$" nginx.conf.default >nginx.conf   //去掉包含#号和空行的内容 [[email protected] co

搭建nginx虚拟主机——基于域名、端口和IP

Nginx支持的虚拟主机有三种 1.基于域名的虚拟主机2.基于IP的虚拟主机3.基于端口的虚拟主机且每一种虚拟主机均可通过"server{}" 配置段实现各自的功能 一.基于域名搭建 1.编译安装Nginx服务2.远程获取Windows上的源码包,并挂载到Linux上 [[email protected] ~]# smbclient -L //192.168.235.1 Enter SAMBA\root's password: Sharename Type Comment ------

企业常用Centos 7.4 --虚拟主机基于域名,端口,IP,Apache访问控制

构建虚拟主机 一共支持三种虚拟主机类型企业常用的是第一种基于域名的虚拟主机基于IP地址的虚拟主机,一台物理主机上需要两个网卡基于端口的虚拟主机 构建虚拟主机之基于域名 环境需求:一台linux作为DNS和web服务器,一台WIN10客户端作为测试 在我们的Linux先装两个 软件包 [[email protected] ~]# yum install bind httpd -y 已安装: bind.x86_64 32:9.11.4-9.P2.el7 httpd.x86_64 0:2.4.6-90

构建虚拟主机——基于域名,端口,IP

虚拟web主机 在同一台物理服务器中运行多个web站点,其中每一个站点并不独立占用一台真正的计算机 httpd支持的虚拟主机类型 * 基于域名的虚拟主机 * 基于IP地址的虚拟主机 * 基于端口的虚拟主机 案例一--基于域名 构建2个虚拟web站点 www.accp.com ip地址为本机地址 www.kgc.com ip地址为本机地址 在浏览器中访问这两个域名时,分别显示不同的内容 实验环境 一台Linux主机做服务器一台win7主机做测试 1,安装http和dns服务 [[email pro

CentOS7构建虚拟Web主机(基于域名、端口、IP地址)

虚拟Web主机 在同一台物理服务器中运行多个Web站点,其中每一一个站点并不独立占用一台真正的计算机. httpd支持的虚拟主机类型 基于域名的虚拟主机 基于IP地址的虚拟主机 基于端口的虚拟主机 构建虚拟主机------基于域名 (1)安装bind.httpd服务. (2)进入named服务的主配置文件,将下图两个位置改为"any". [[email protected] ~]# vim /etc/named.conf (3)进入named服务的区域配置文件,添加两个域名的区域信息.

nginx虚拟主机和域名跳转

nginx介绍 nginx官网 :nginx.orgnginx主要应用web服务.反向代理和负载均衡的作用上nginx分支,淘宝基于nginx开发的Tengine,使用上和nginx一致,服务和配置名一致nginx比起apache在处理静态页面时更有优势,nginx最大区别在于Tenging支持一些定制化模块,在安全限速方面比较突出,支持js.css合并,优化web的高并发的访问需求nginx核心+lua相关组件和模块可以组成一个支持lua的高性能web容器openresty,openresty

Nginx虚拟主机应用:(创建多个基于域名的虚拟主机并测试)

一:使用Nginx搭建虚拟主机服务器时,每个虚拟WEB站点拥有独立的"server {}"配置段,各自监听的IP地址.端口号可以单独指定,当然网站名称也是不同的. 二:虚拟机的分类: 1:基于域名虚拟主机(一个ip地址对应多个域名,不同域名就是不同的站点,其内容也不一样) 2:基于端口虚拟主机(服务器只有一个ip地址,不同端口就是不同的站点,其内容也不一样) 3:基于ip虚拟主机(服务器有多个ip地址,不同ip就是不同的站点,其内容也不一样) =====================