правило, возвращает ОК?
```
location ~ ^/storage/uploads/(.*)$ {
add_header 'Content-Type' 'text/html';
return 200 "OK";
root /var/www/backend/uploads;
try_files $1 $1/ =404;
}
```
ага, возвращается ОК
Обсуждают сегодня