Nginx配置二级域名

当一个域名需要使用在两个项目上后,我们就需要使用到二级域名,在 Nginx 中配置二级域名如下:
1、原始配置文件如下
worker_processes  1;




events {

    worker_connections  1024;

}




http {

    include       mime.types;

    default_type  application/octet-stream;




    sendfile        on;




    keepalive_timeout  65;




    server {

        listen       80;

        server_name  localhost;




        location / {

            root   html;

            index  index.html index.htm;

        }




        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }




}
这是解压后的 nginx.conf 文件,可以看出,当前 nginx 监听的是 80 端口,它的服务名为 localhost,假如我们的域名为:baidu.com,那我们输入:localhost.baidu.com 也是可以访问的
2、配置二级域名
对于我们刚才理解的服务名,假如我们的域名为:baidu.com,我们需要配置的二级域名为 asurplus.baidu.com,我们的配置文件如下
worker_processes  1;




events {

    worker_connections  1024;

}




http {

    include       mime.types;

    default_type  application/octet-stream;




    sendfile        on;




    keepalive_timeout  65;




    server {

        listen       80;

        server_name  localhost;




        location / {

            root   html;

            index  index.html index.htm;

        }




        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }




server {

        listen       80;

        server_name  asurplus.baidu.com;




        location / {

proxy_pass http://127.0.0.1:8081;

        }

    }




}
到 sbin 目录,执行命令重启 nginx
./nginx -s reload
1
我们新增了一个服务,监听的依然是 80 端口,我们的服务名变成了我们的二级域名:asurplus,并转发到了我们的 8081 端口,从而完成了二级域名的配置

标题名称:Nginx配置二级域名
URL标题:http://www.shufengxianlan.com/qtweb/news18/319868.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联