xiaoxue 发表于 2017-1-5 13:32:39

求教:Nginx打开目录浏览功能

server
    {
                listen 443 ssl http2;
      #listen [::]:80;
                ssl on;
            ssl_certificate /root/ssl.crt;
            ssl_certificate_key /root/ssl.key;
      server_name io.io www.io.io;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/io.io;
               
      location /File/ {
      alias /home/wwwroot/io.io/File/log/;
      autoindex on;
      autoindex_exact_size off;
      autoindex_localtime on;
}

      #error_page   404   /404.html;
      include enable-php.conf;

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /\.
      {
            deny all;
      }

      access_log off;
    }
        server
        {
                listen 80;
                server_name io.io www.io.io;
                return 301 https://io.io$request_uri;
                }

但是显示403
试了很多次,都不行啊!

xiaoxue 发表于 2017-1-5 13:34:22

就是我想io.io/File/log/
这个目录开启浏览功能、并且能下载一些文件

licess 发表于 2017-1-5 16:21:20

alias 指定的目录是准确的,可以理解为linux的 ln命令创建软连接,location就是软连接的名字。

所以应该是
location /File/log/ {
      alias /home/wwwroot/io.io/File/log/;

xiaoxue 发表于 2017-1-12 15:18:04

回复 3# 的帖子

io.io/File/log/目录
403 Forbidden

[ 本帖最后由 xiaoxue 于 2017-1-12 15:21 编辑 ]

licess 发表于 2017-1-12 17:01:01

回复 4# 的帖子

可能你新的配置上有其他问题或没生效等之类的问题
页: [1]
查看完整版本: 求教:Nginx打开目录浏览功能