Nginx 配置静态目录

  • 配置静态目录

    1
    2
    3
    4
    5
    location ^~ /docs {
    autoindex on;
    alias /home/wayde/docs/operation;
    index op-ppt.html;
    }
  • root与alias

    访问 domain/docs/test.html,即请求/home/www/project/docs/test.html

    1
    2
    3
    location /docs/ {
    root /home/www/project;
    }

    访问domain/docs/test.html,即请求/home/www/project/static/test.html

    1
    2
    3
    location /docs/ {
    alias /home/www/project/static;
    }
    1. 使用alias时目录名后面一定要加“/”
    2. 一般情况下,在location /中配置root,在location /other中配置alias
  • 404 Not Found

    详见参考资料

  • 403 Forbidden

    表示你在请求一个资源文件但是nginx不允许你查看

    哪些场景需要返回403状态码的场景?

    1.网站禁止特定的用户访问所有内容,例:网站屏蔽某个ip访问。

    2.访问禁止目录浏览的目录,例:设置autoindex off后访问目录

    3.用户访问只能被内网访问的文件

    1.权限配置不正确

    ​ 解决办法:设置所有父目录为755权限,设置文件为644权限可以避免权限不正确。

    1. 目录索引设置错误(index指令配置)

      当访问该网站的时,nginx 会按照 index.html,index.htm ,index.php 的先后顺序在根目录中查找文件。如果这三个文件都不存在,那么nginx就会返回403 Forbidden。

      如果index中不定义 index.php ,nginx直接返回403 Forbidden而不会去检查index.php是否存在

      解决办法:添加首页文件到index指令,常见的是index.php,index.jsp,index.jsp或者自定义首页文件

  • 自动去掉url结尾斜杠(/)

    rewrite ^/(.*)/\$ /$1 permanent

参考资料:
Nginx 配置静态文件404问题