Nginx 403错误:禁止[文件夹]的目录索引

问题描述 投票:146回答:17

我有3个域名,我正在尝试使用Nginx在一台服务器(数字海洋液滴)上托管所有3个站点。

my site1.那么没有site2.那么没有site3.那么

其中只有一个有效。另外两个导致403错误(以相同的方式)。

在我的nginx错误日志中,我看到:[error] 13108#0: *1 directory index of "/usr/share/nginx/mysite2.name/live/" is forbidden

我的网站启用配置是:

server {
        server_name www.mysite2.name;
        return 301 $scheme://mysite2.name$request_uri;
}
server {
        server_name     mysite2.name;

        root /usr/share/nginx/mysite2.name/live/;
        index index.html index.htm index.php;

        location / {
                try_files $uri $uri/ /index.html index.php;
        }

        location ~ \.php$ {
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
        }
}

所有3个站点都有几乎相同的配置文件。

每个站点的文件都在/usr/share/nginx/mysite1.name/someFolder等文件夹中,然后/usr/share/nginx/mysite1.name/live是一个符号链接。 (与mysite2和mysite3相同。)

我看过Nginx 403 forbidden for all files,但没有帮助。

关于可能出错的任何想法?

configuration nginx http-status-code-403 domain-name
17个回答
120
投票

如果您关闭了目录索引,并且遇到此问题,可能是因为您使用的try_files有一个目录选项:

location / {
  try_files $uri $uri/ /index.html index.php;
}                 ^ that is the issue

删除它,它应该工作:

location / {
  try_files $uri /index.html index.php;
} 

从我所看到的,这是因为nginx将尝试索引目录,并被自己阻止。抛出OP提到的错误。


2
投票

改变php-fpm指向try_files路径,在你提到的“Laravel”它应该是这样的

index.php

在“codeigniter”项目中尝试这样

location / {
    try_files $uri $uri/ /public/index.php$request_uri;
}

2
投票

您需要对静态文件目录具有执行权限。它们也需要由你的nginx用户和组来完成。


2
投票
location / {
    try_files $uri $uri/ /public_web/index.php$request_uri;
}

更改默认值

location ~* \.php$ {
    ...
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;    
}

fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

解决了我的问题。


1
投票
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

我正在运行Ubuntu 15.10并且由于一个简单的原因遇到了403 Forbidden错误。在nginx.conf(nginx的配置文件)中,用户是'www-data'。一旦我将用户名更改为[我的用户名],假设我的用户名具有必要的权限,它就可以正常工作。我跟着的步骤:

6833#0: *1 directory index of "/path/to/your/app" is forbidden, client: 127.0.0.1, server: lol.com, request: "GET / HTTP/1.1", host: "localhost"    

我的配置文件如下所示:

chmod 755 /path/to/your/app    

0
投票

对我来说问题是除了基本路线以外的任何路线都在工作,添加这一行修复了我的问题:

**user [my username]**;#I made the change here.
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}

http {

##
# Basic Settings
##

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;

# server_names_hash_bucket_size 64;
# server_name_in_redirect off;

include /etc/nginx/mime.types;
default_type application/octet-stream;

##
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

##
# Gzip Settings
##

gzip on;
gzip_disable "msie6";

# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;


server {
    listen 80;

    server_name My_Server;

    access_log  /var/log/nginx/access.log;
    error_log  /var/log/nginx/error.log;

    location / {
        proxy_pass         http://127.0.0.1:8000;
        proxy_redirect     off;

        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }
}
}

完整的东西:

index           index.php;

0
投票

我解决了我的问题,如果我配置如下:

server {

    server_name example.dev;
    root /var/www/example/public;
    index           index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

它会显示403错误。

location = /login {
    index  login2.html;
}

我试过[error] 4212#2916: *2 directory index of "D:\path/to/login/" is forbidden ,但没有工作。如果我改变我的配置,这是有效的。

autoindex on

我认为完全匹配,如果它是一个路径应该是一个目录。


0
投票

当你想保留目录选项时,你可以将index.php放在$ uri之前。

location = /login/ {
    index  login2.html;
}

0
投票

为了解决这个问题,我花了一整晚。这是我对这个故事的两分钱,

检查你是否使用hhvm作为php解释器。然后它可能正在侦听端口9000,因此您将不得不修改您的Web服务器的配置。

这是一个注意事项:如果您使用的是mysql,并且从hhvm到mysql的连接变得不可能,请检查您是否安装了apparmor。禁用它。


0
投票
try_files /index.php $uri $uri/

在这里,我使用location / { root fileLocation; index index.html index.htm; expires 0; if_modified_since off;} 而不是alias,这导致我的错误。这种配置工作正常。


59
投票

这是有效的配置:

server {
    server_name www.mysite2.name;
    return 301 $scheme://mysite2.name$request_uri;
}
server {
    #This config is based on https://github.com/daylerees/laravel-website-configs/blob/6db24701073dbe34d2d58fea3a3c6b3c0cd5685b/nginx.conf
    server_name mysite2.name;

     # The location of our project's public directory.
    root /usr/share/nginx/mysite2/live/public/;

     # Point index to the Laravel front controller.
    index           index.php;

    location / {
        # URLs to attempt, including pretty ones.
        try_files   $uri $uri/ /index.php?$query_string;
    }

    # Remove trailing slash to please routing system.
    if (!-d $request_filename) {
            rewrite     ^/(.+)/$ /$1 permanent;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
    #   # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #   # With php5-fpm:
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param                   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

}

然后浏览器中唯一的输出是Laravel错误:“糟糕,看起来出了问题。”

不要运行chmod -R 777 app/storagenote)。使世界可写的东西是安全性差的。

chmod -R 755 app/storage工作,更安全。


54
投票

如果你只是想列出目录内容,请使用autoindex on;

location /somedir {
       autoindex on;
}

server {
        listen   80;
        server_name  domain.com www.domain.com;
        access_log  /var/...........................;
        root   /path/to/root;
        location / {
                index  index.php index.html index.htm;
        }
        location /somedir {
               autoindex on;
        }
}

19
投票

我遇到了类似的错误 ---网页上的“403 Forbidden” --- /var/log/nginx/error.log中的错误日志中的“13:Permission denied”

以下3个步骤对我有用:

1: Open Terminal, saw something like below

user1@comp1:/home/www/

所以,我的用户名是“user1”(从上面)

2: Changed user in /etc/nginx/nginx.conf

# user www-data;
user user1;

3: Reloaded the nginx

sudo nginx -s reload  

另外,我已经应用了文件/文件夹权限(在我执行上述3个步骤之前) (755到我的目录,比如/ dir1 /)&(644用于该目录下的文件): (我不确定,如果真的需要这个额外的步骤,只需要3个步骤就足够了):

chmod 755 ./dir1/
chmod 644 ./dir1/*.*

希望这可以帮助快速的人。祝你好运。


7
投票

我有同样的问题,日志文件显示我这个错误:

2016/03/30 14:35:51 [error] 11915#0: *3 directory index of "path_scripts/viewerjs/" is forbidden, client: IP.IP.IP.IP,     server: domain.com, request: "GET /scripts/viewerjs/ HTTP/1.1", host: "domain", referrer: "domain.com/new_project/do_update"

我正在托管一个带有codeigniter框架的PHP应用程序。当我想查看上传的文件时,我收到了qazxsw poi。

问题是,403 Error没有正确定义。代替

nginx.conf

我只包括在内

index index.html index.htm index.php

我的root中有一个index.php,我认为这就够了,我错了;)提示给了我index index.php


6
投票

事实上,您需要检查几件事。 1.检查你的nginx的运行状态

NginxLibrary

在这里,我们需要检查谁正在运行nginx。请记住用户和组

  1. 检查文件夹的访问状态 ls -alt
  2. 与nginx的文件夹状态进行比较

(1)如果文件夹的访问状态不正确

ps -ef|grep nginx

ps aux|grep nginx|grep -v grep

(2)如果文件夹的用户和组与nginx的运行不一致

sudo chmod 755 /your_folder_path

并更改nginx的运行用户名和组

sudo chown your_user_name:your_group_name /your_folder_path

找到nginx配置文件的位置

nginx -h

因为nginx默认运行的用户是nobody而group是nobody。如果我们没有注意到这个用户和组,将引入403。


6
投票

你可能会因为Nginx策略(例如“deny”)而得到这个,或者你可能因为Nginx配置错误而得到这个,或者你可能因为文件系统限制而得到这个。

您可以确定它是否是后者(并且可能通过使用strace看到错误配置的证据(除了OP将无法访问它):

sudo vi /your_nginx_configuration_file

//in the file change its user and group
user your_user_name your_group_name;

//restart your nginx
sudo nginx -s reload

在这里我正在检查运行测试时由nginx完成的文件系统活动(我和你有同样的错误)。

这是我当时配置的一部分

# pidof nginx
11853 11852

# strace -p 11853 -p 11852 -e trace=file -f
Process 11853 attached - interrupt to quit
Process 11852 attached - interrupt to quit
[pid 11853] stat("/var/www/html/kibanaindex.html", 0x7ffe04e93000) = -1 ENOENT (No such file or directory)
[pid 11853] stat("/var/www/html/kibana", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
^CProcess 11853 detached
Process 11852 detached

在我的情况下,正如strace非常清楚地表明的那样,“别名”与“索引”的加入并不是我所期望的,似乎我需要养成总是用/附加目录名的习惯,所以在我的情况下,以下工作:

    location /kibana/3/ {
        alias /var/www/html/kibana;
        index index.html;
    }

3
投票

它看起来像是一些权限问题。

尝试将您在mysite1中执行的所有权限设置为其他站点。

默认情况下,文件权限应为644和dirs 755.另请检查运行nginx的用户是否有权读取该文件和dirs。


3
投票

因为你正在使用 location /kibana/3/ { alias /var/www/html/kibana/; index index.html; } ,你应该确保php-fpm用户与php-fpm用户相同。

检查nginx并将php用户和组设置为/etc/php-fpm.d/www.conf(如果不是)。

nginx用户需要写入权限。

© www.soinside.com 2019 - 2024. All rights reserved.