nginx 别名配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 别名配置相关的知识,希望对你有一定的参考价值。

server {

        listen       80;

        server_name  www.etangbo.com etangbo.com; #,就是在server_name后添加访问的别名

        #日志存放路径

        access_log  /app/log/www/host.access.log main;

        location / {

            root   /data/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.etangbo.com bbs1.etangbo.com;

        #日志存放路径

        access_log  /app/log/bbs/host.access.log  main;

        location / {

            root   /data/bbs;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        } 

   }

###

    server {

        listen       80;

        server_name  blog.etangbo.com blog1.etangbo.com;

        #日志存放路径

        access_log  /app/log/blog/host.access.log  main;

        location / {

            root   /data/blog;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

   }


本文出自 “山猫” 博客,谢绝转载!

以上是关于nginx 别名配置的主要内容,如果未能解决你的问题,请参考以下文章

配置nginx虚拟主机别名及别名企业场景应用说明

nginx虚拟主机别名配置

nginx 配置:别名和 404 错误

nginx 从根服务静态文件并从别名上传文件

Nginx虚拟主机配置实践之nginx访问同一个地址方法

Linux实战第五篇:RHEL7.3下Nginx虚拟主机配置实战(基于别名)