Работаю в Ubuntu. Nginx отказывается автоматически стартовать из-за одного конфига. Но в ручную он запускается и на конфиг этот он не ругается ни разу
Вот что говорит консоль

А вот сам конфиг
upstream backend_hosts {
    server grand-study.com;
}
server {
    listen 80;
    listen [::]:80;
    root /projects/grandstudy.cc/public;
    index index.php index.html index.htm index.nginx-debian.html;
    server_name grandstudy.cc;
    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    location /storage/ {
	proxy_cache         imgcache;
	proxy_pass http://backend_hosts;
    }
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
    }
    location ~ /\.ht {
        deny all;
    }
}