Добрый день всем, помогите разобраться почему backend не работает под ссылкой site.ru/admin.
При переходе на ссылку 193.200.74.52/admin ловлю 404 ошибку и проект продолжает смотреть в frontend/web
Я с nginx только учусь работать поэтому камнями не кидайте. Вот конфиг nginx
server {
#client_max_body_size 200M;
listen 80 default_server;
listen [::]:80 default_server;
server_name 193.200.74.52;
root /var/www/notice.com/frontend/web;
index index.php;
charset utf-8;
location / {
root /var/www/notice.com/frontend/web;
try_files $uri $uri/ /index.php$is_args$args;
rewrite ^/(.*)/$ /$1 permanent;
location ~ ^/assets/.+\.php(/|$) {
deny all;
}
}
location /admin {
root /var/www/notice.com/backend/web;
try_files $uri $uri/ /index.php$is_args$args;
rewrite ^/(.*)/$ /$1 permanent;
location ~ ^/assets/.+\.php(/|$) {
deny all;
}
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
#location ~ /\.ht {
# deny all;
#}
}