У меня nginx установлен на Ubuntu с установленным CakePHP в Vhost. Сайт работает нормально, но при попытке доступа к разделу domain.com/admin появляется ошибка 403 Forbidden.

Конфигурационный файл Nginx:-

server {
    listen   80;
    #listen   [::]:80;

    root /var/www/downloads.studyiq.com/html/webroot;
    index index.php index.html;

    server_name downloads.studyiq.com;

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

    location /webroot/admin/ {
            rewrite ^(/.*)$ /var/www/downloads.stuqyiq.com/html/webroot/$1 break;
            try_files $uri $uri/ /var/www/downloads.studyiq.com/html/webroot/index.php?$args;
    }


    location ~ \.php$ {
            try_files $uri =404;
            include fastcgi_params;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
            #fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_intercept_errors on;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
     }

    location ~ /\. {
       deny all;
     }

0