nginx: [emerg] directive "location" has no opening "{" in /xindao/nginx/conf/nginx.conf:139

nginx: [emerg] directive "location" has no opening "{" in /xindao/nginx/conf/nginx.conf:139

一种错误解决办法:缺少空格

这是我之前的配置文件

location ~ .*\.(js)${

    root /xindao/resource/js;

    proxy_temp_path /xindao/resource/js;

}

改为

location ~ .*\.(js)$    {

   root /xindao/resource/js;

   proxy_temp_path /xindao/resource/js;

}

区别如下:

猜你喜欢

转载自blog.csdn.net/Lonely_Devil/article/details/81331125