当前位置:   article > 正文

Nginx跨域问题的解决方法_nginx跨域解决方案

nginx跨域解决方案

项目场景:

Web前端开发经常会遇到跨域访问,如果没有办法让后台开放访问域,调用接口就会被浏览器拦截。解决跨域问题的方案,可以搭建一个后台服务做中间转发,也可以用nginxicon-default.png?t=N176https://so.csdn.net/so/search?q=nginx转发。

问题描述

问题发生在nginx反向代理icon-default.png?t=N176https://so.csdn.net/so/search?q=%E5%8F%8D%E5%90%91%E4%BB%A3%E7%90%86springboot后端应用时,前端请求后端时发生Cros错误,如下图所示。

原因分析:

1.Nginx作为代理服务,需要配置允许跨域

2.Springboot后台服务需要配置允许跨域请求

解决方案:

1.检查后台服务是否设置了允许跨域,设置方法如下:

  1. @Configuration
  2. public class WebMvcConfig implements WebMvcConfigurer {
  3. @Override
  4. public void addCorsMappings(CorsRegistry registry) {
  5. registry.addMapping("/**")
  6. .allowedHeaders("Content-Type","X-Requested-With","accept,Origin","Access-Control-Request-Method","Access-Control-Request-Headers","token")
  7. .allowedMethods("*")
  8. .allowedOrigins("*")
  9. .allowCredentials(true);
  10. }
  11. /**
  12. * 支持PUT、DELETE请求
  13. */
  14. @Bean
  15. public FormContentFilter httpPutFormContentFilter() {
  16. return new FormContentFilter();
  17. }
  18. }

2.检查nginx.conf配置文件是否允许跨域,在server配置内进行配置,配置方法如下:

  1. location /space-time/ {
  2. if ($request_method = OPTIONS ) {
  3. add_header Access-Control-Allow-Origin "*" always;
  4. add_header Access-Control-Allow-Methods "POST, GET, PUT, OPTIONS, DELETE";
  5. add_header Access-Control-Max-Age "3600";
  6. add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization";
  7. add_header Content-Length 0;
  8. add_header Content-Type text/plain;
  9. return 200;
  10. }
  11. proxy_set_header Content-Type application/json;
  12. add_header Access-Control-Allow-Origin "*" always;
  13. add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept";
  14. add_header Access-Control-Allow-Methods "GET, POST, OPTIONS";
  15. proxy_pass http://localhost:8086/space-time/;
  16. proxy_set_header X-Real-IP $remote_addr;
  17. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/495696
推荐阅读
相关标签
  

闽ICP备14008679号