403 Запрещенный доступ Symfony2 проект

У меня есть проект на symfony2.8, я использую Parrot OS (на основе Debian), я уже установил PHP7.1 и MariaDB, но когда я пытаюсь получить доступ к проекту сайта, я получил:

403 Запрещено

Есть несколько журналов:

/var/log/nginx/error.log

2018/08/18 19:57:29 [error] 2520#2520: *15 directory index of "/var/www/html/xxxxxx/" is forbidden, client: ::1, server: _, request: "GET /airnjobs/ HTTP/1.1", host: "localhost"

/var/log/nginx/access.log

::1 - - [18/Aug/2018:19:57:29 +0200] "GET /xxxxx/ HTTP/1.1" 403 199 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36"

Можете ли вы помочь мне, пожалуйста:/ Я застрял!

ОБНОВЛЕНИЕ 1:

По-прежнему нет доступа, я выбрал каталог и файлы и chmod без результатов.

1 ответ

Это похоже на проблему с конфигурацией nginx, а не на разрешение.

Если /xxxxx это каталог проекта, веб-корень проекта должен быть /xxxxx/web,
Ваш журнал показывает, что вы пытаетесь составить список содержимого вашего каталога проекта, когда вы только когда-либо должны иметь доступ /xxxxx/web/app_dev.php, /xxxxx/web/app.php или же /xxxxx/web/config.php,
так что эта ошибка 403 - ожидаемое поведение.

Когда вы пытаетесь получить доступ к среде разработки, ваш URL должен выглядеть примерно так:
http://localhost/xxxxx/web/app_dev.php,
или же http://xxxxx.local/app_dev.php если у вас правильно настроен веб-хостинг.

В документации Symfony есть пример конфигурации nginx для 2.8:
https://symfony.com/doc/2.8/setup/web_server_configuration.html

Я изменил это немного, чтобы соответствовать вашему случаю:

server {
    server_name xxxxx.local;
    root /var/www/html/xxxxx/web;

    location / {
        # try to serve file directly, fallback to app.php
        try_files $uri /app.php$is_args$args;
    }
    # DEV
    # This rule should only be placed on your development environment
    # In production, don't include this and don't deploy app_dev.php or config.php
    location ~ ^/(app_dev|config)\.php(/|$) {
        fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        # When you are using symlinks to link the document root to the
        # current version of your application, you should pass the real
        # application path instead of the path to the symlink to PHP
        # FPM.
        # Otherwise, PHP's OPcache may not properly detect changes to
        # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
        # for more information).
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
    }
    # PROD
    location ~ ^/app\.php(/|$) {
        fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        # When you are using symlinks to link the document root to the
        # current version of your application, you should pass the real
        # application path instead of the path to the symlink to PHP
        # FPM.
        # Otherwise, PHP's OPcache may not properly detect changes to
        # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
        # for more information).
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        # Prevents URIs that include the front controller. This will 404:
        # http://domain.tld/app.php/some-path
        # Remove the internal directive to allow URIs like this
        internal;
    }

    # return 404 for all other php files not matching the front controller
    # this prevents access to other php files you don't want to be accessible.
    location ~ \.php$ {
        return 404;
    }

    error_log /var/log/nginx/xxxxx_error.log;
    access_log /var/log/nginx/xxxxx_access.log;
}

Это входит в ваш файл конфигурации nginx, например:
/etc/nginx/conf.d/xxxxx.conf

Затем вам нужно добавить имя хоста xxxxx.local на ваш /etc/hosts файл:

127.0.0.1        xxxxx.local
Другие вопросы по тегам