Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Не стартует nginx
Не стартует nginx
Приветствую всех. Потребовалось перезапустить сервис и вывалилась следующая ошибка:
nginx: [emerg] "location" directive is not allowed here in /etc/nginx/conf.d/webmail.inc:1
Вроде ничего особого в нем, но гугл ничего не знает об именно об этой ошибки.
Прошу совета что это может быть.
nginx: [emerg] "location" directive is not allowed here in /etc/nginx/conf.d/webmail.inc:1
SpoilerShow
Содержимое:
location /webmail {
alias /var/lib/roundcube/;
location ~ /(config|temp|logs) {
return 404;
}
location ~ ^/webmail/(.*\.php)$ {
alias /var/lib/roundcube/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}
location /webmail {
alias /var/lib/roundcube/;
location ~ /(config|temp|logs) {
return 404;
}
location ~ ^/webmail/(.*\.php)$ {
alias /var/lib/roundcube/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}
Прошу совета что это может быть.