nginx作为反向代理访问静态资源出现404问题


我的xxx.conf配置(win10)

server { 

    listen 80; 
    autoindex off; 
    server_name image.imooc.com; 
    access_log c:/access.log combined; 
    index index.html index.htm index.jsp index.php; 
    #error_page 404 /404.html; 
    if ( $query_string ~* ".*[\;'\<\>].*" ){ 
         return 404; 
    } 


    location ~ /(mmall_fe|mmall_admin_fe)/dist/view/* { 
         deny all; 
    } 
    location / { 
         root X:\xxx\img; 
         add_header Access-Control-Allow-Origin *; 
    } 

}


然后通过cmd的nginx.exe -t    和  nginx.exe -s reload后  可以本地访问到

Welcome to nginx!

最后访问静态图片时出现404错误

解决办法是在任务管理器里把nginx后台全结束了,然后通过cmd的命令行nginx.exe重新激活(我的问题就是这样)


你可能感兴趣的:(web开发)