zoukankan      html  css  js  c++  java
  • nginx root 和 alias 的区别

    nginx 指定文件路径有两种方式 root 和 alias,两者的主要区别在于 nginx 如何解释 location 后面的 uri。

    真实目录与虚拟目录

    官方的说,alias 指令用来重置当前文件的目录,lacation 后面的uri 是虚拟目录,而使用 root 时,lacation 后面的 uri 是真实目录。

    举个例子,对于相同配置,访问 http://localhost/test/index.html

    location ^~ /test/ {
      root /www/root/html/;
    }
    

    将会访问服务器的 /www/root/html/test/index.html 资源。

    location ^~ /test/ {
      alias /www/root/html/;
    }
    

    将会访问服务器的 /www/root/html/index.html 资源。

    使用建议

    一般情况下,在 nginx 配置中的良好习惯是:

    • 1)在location / 中配置root目录;
    • 2)在location /path 中配置alias虚拟目录。

    当然,使用 root + rewrite 可以 实现虚拟目录的功能。alias 后面也可以使用 reweite 功能,比如:

    location /web1 {
      # index index.html index;
      alias /Users/arraybuffer/Desktop/html;
      rewrite /web1 /web2/web2;
    }
    
    location /web2 {
      # index index.html index;
      alias /Users/arraybuffer/Desktop/html;
    }
    
  • 相关阅读:
    git更新代码
    git标签
    git分支
    命令连接redis
    sql语句
    rm -rf无法删除文件解决方法
    lombda 使用记录
    centos查看磁盘空间大小
    CentOS7 防火墙Firewall常用命令
    安装rabbitmq
  • 原文地址:https://www.cnblogs.com/GManba/p/14088555.html
Copyright © 2011-2022 走看看