nginx域名配置虚拟主机

一个域名,对应一个IP地址
通过DNS域名解析服务器,可以将域名解析为IP地址

这里
通过修改host文件,指定域名的IP地址

host劫持
是指在host文件中,配置域名和IP地址,当访问域名的时候
因为,host文件中已经有了域名所对应的IP地址
所以,不再需要访问DNS服务器进行解析,直接访问对应的IP地址

host文件的位置
C:\Windows\System32\drivers\etc

Nginx配置文件注释:

 [[email protected] conf]# vim nginx.conf

worker_processes  1;    #worker进程的数量
events {                #事件块的开始
worker_connections  1024;            #每个worker进程支持的最大连接数
}                       #事件块的结束
http {                  #HTTP区块的开始
include       mime.types;                #Nginx支持媒体类型库文件
default_type  application/octet-stream;    #默认的媒体类型
sendfile        on;                        #开启高速传输模式
keepalive_timeout  65;                     #连接超时
server {                                    #第一个server区块的开始
    listen       80;                        #提供服务的端口,默认为80
    server_name   www.nautilus.org ;                 #提供服务的域名主机
    location / {                            #第一个location区块的开始
        root   html/www;                        #站点的根目录,相当于Nginx的安装目录
        index  index.html index.htm;        #默认的首页文件,多个使用空格隔开
    }                                        #第一个location区块的结束
    error_page   500 502 503 504  /50x.html;    #出现对应的http状态码是,使用50x.html回应客户
    location = /50x.html {                    #location区块的开始,访问50x.html
        root   html;                            #指定对应的站点目录为html
    }
}
}                                                   #HTTP区块的结束

操作步骤

[[email protected] nginx]# ls
client_body_temp  fastcgi_temp  logs        sbin       uwsgi_temp
conf              html          proxy_temp  scgi_temp
[[email protected] nginx]# cd html
[[email protected] html]#
[[email protected] html]# mkdir www
[[email protected] html]#
[[email protected] html]# cd www
[[email protected] www]# ls
index.html
[[email protected] www]# vim index.html
   hello  localhost

[[email protected] nginx]# vim /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

172.31.1.32     www.nautilus.org

访问网站:

        www.nautilus.org

Nginx配置基于多域名

    server {
    listen       80;
    server_name  www.nautilus.org;
    location / {
        root   html/www;
        index  index.html index.htm;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

 server {
    listen       80;
    server_name  bbs.nautilus.org;
    location / {
        root   html/bss;
        index  index.html index.htm;
    }
}

server {
    listen       80;
    server_name  blog.nautilus.org;
    location / {
        root   html/blog;
        index  index.html index.html;
    }

}

[[email protected] nginx]# cd html
[[email protected] html]#
[[email protected] html]# mkdir bbs
[[email protected] html]#
[[email protected] html]# cd bbs
[[email protected] bbs]# ls
index.html
[[email protected] bbs]# vim index.html
   hello  bbs
[[email protected] html]# mkdir blog
[[email protected] html]#
[[email protected] html]# cd blog
[[email protected] blog]# ls
index.html
[[email protected] blog]# vim index.html
   hello  blog

  [[email protected] html]# ls
50x.html  bbs  blog  index.html  www

[[email protected] nginx]# vim /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

172.31.1.32     www.nautilus.org
172.31.1.32     bbs.nautilus.org
172.31.1.32     blog.nautilus.org

访问网站:

    www.nautilus.org
    bbs.nautilus.org
    blog.nautilus.org

原文地址:https://blog.51cto.com/14259167/2416394

时间: 2024-11-16 03:02:24

nginx域名配置虚拟主机的相关文章

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

nginx下,一个server标签就是一个虚拟主机. 1.基于域名的虚拟主机,通过域名来区分虚拟主机--应用:外部网站 2.基于端口的虚拟主机,通过端口来区分虚拟主机--应用:公司内部网站,外部网站的管理后台 3.基于ip的虚拟主机,几乎不用. 基于域名配置虚拟主机步骤: 需要建立/data/www /data/bbs目录,windows本地hosts添加虚拟机ip地址对应的域名解析:对应域名网站目录下新增index.html文件:  nginx.conf配置文件新增如下代码: server {

linux上nginx上配置虚拟主机的相关配置

1.配置主配置: nginx/conf/nginx.conf 2.虚拟主机配置:nginx/conf/extra/learn.weixin.com.conf 配置完后,重启服务器!

nginx中配置虚拟主机

今天做了一个nginx的多虚拟主机的实验,遇到了一些问题.首先介绍一下配置文件如何修改.如下是我的主配置文件nginx.conf user nobodynobody; worker_processes2; error_log/usr/local/nginx/logs/nginx_error.log crit; pid/usr/local/nginx/logs/nginx.pid; worker_rlimit_nofile51200; events { use epoll; worker_conn

Apache基于域名配置虚拟主机

Apache的虚拟主机服务就是指将一台机器虚拟成多台WEB服务器.具体地说,就是,我们可以利用虚拟主机服务将两个域名分配到同一台服务器上,而访问者只要输入域名就可以访问.比如在本机,我们配置www.aaa.com和www.bbb.com.基于域名的虚拟主机服务不需要多个IP地址,配置简单,无需特殊的硬件支持.下面的配置是在windows下的基于域名的虚拟主机配置,Apache版本为 httpd-2.2.22.在本机上设置两个虚拟主机,假设站点域名分别为www.51venus.com和51venu

centos apache 多域名配置虚拟主机

1.配置hosts文件 [[email protected]_ttonnet ~]# cat /etc/hosts 123.58.250.36  monitor.ttonnet.com 123.58.250.36  leader.ttonnet.com 2.配置http 虚拟主机 1).进入/etc/httpd/conf.d目录 2).创建虚拟主机配置文件 [[email protected]_ttonnet conf.d]# cat httpd-vhosts.conf NameVirtualH

nginx如何配置虚拟主机

server { listen 80; #listen [::]:80 default_server ipv6only=on; server_name local.presion.caomall.net; index index.html index.htm index.php; root /home/wwwroot/default/precision/Public; #error_page 404 /404.html; include enable-php-pathinfo.conf; //注

nginx配置虚拟主机之不同端口和不同IP地址

配置nginx虚拟主机不同端口和不同ip地址,和上编nginx基于域名配置虚拟主机博文类似,请先参考. zxl.com域名不同端口,配置文件内容如下: [[email protected] 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/z

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

摘自:http://www.jb51.net/article/107331.htm Nginx vhost配置,可实现基于ip.端口号.servername的虚拟主机,同时可避免直接修改主配置文件.在nginx下配置虚拟主机vhost非常方便.这篇文章主要介绍了nginx配置虚拟主机vhost的方法,需要的朋友可以参考下 前言 所谓虚拟主机,是说通过几个不同的url地址,都能到达nginx环境,只不过针对不同的url,处理的逻辑不同.nginx支持虚拟主机,但是浏览器等客户端不知道,所以虚拟主机

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

nginx,一个server标签就是一个虚拟主机. 1.基于域名的虚拟主机,通过域名来区分虚拟主机--应用:外部网站 2.基于端口的虚拟主机,通过端口来区分虚拟主机--应用:公司内部网站,外部网站的管理后台 3.基于ip的虚拟主机,几乎不用. 1.基于域名配置虚拟主机配置: 需要建立/data/www /data/bbs目录,windows本地hosts添加虚拟机ip地址对应的域名解析: 对应域名网站目录下新增index.html文件: nginx.conf配置文件新增如下代码: server