nginx: [emerg] "location" directive is not allowed here in /usr/local/nginx/conf/nginx.conf:66
时间: 2023-12-10 13:35:46 浏览: 707
最新版nginx安装包
nginx: [emerg] "location" directive is not allowed here in /usr/local/nginx/conf/nginx.conf:66 这个错误通常是由于在nginx配置文件中的错误位置使用了location指令导致的。location指令只能在http、server或location块中使用,如果在其他块中使用,就会出现这个错误。请检查你的nginx配置文件,确保location指令被正确地放置在http、server或location块中。
以下是一个示例nginx配置文件,其中location指令被正确地放置在server块中:
```nginx
http {
server {
listen 80;
server_name example.com;
location / {
root /var/www/html;
index index.html;
}
}
}
```
阅读全文