当前位置: 首页 > article >正文

nginx cors配置

server {

        listen        80;

        server_name  www.goserver.com;

        # root   "E:/projects/www.goserver.com";

        location / {

            # 设置允许跨域头部

            add_header 'Access-Control-Allow-Origin' 'http://www.vuedist.com';

            add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

            # cookies跨域传输

            add_header 'Access-Control-Allow-Credentials' true;

            add_header 'Access-Control-Allow-Headers' 'Origin,x-token, Authorization, Accept, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

           

            # 如果请求方法为 OPTIONS,则直接返回 204 状态码

            if ($request_method = 'OPTIONS') {

                add_header 'Access-Control-Allow-Origin' 'http://www.vuedist.com';

                add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

                add_header 'Access-Control-Allow-Credentials' 'true';

                add_header 'Access-Control-Allow-Headers' 'Origin, Authorization, Accept, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

               

                add_header 'Content-Type' 'text/plain charset=UTF-8';

                add_header 'Content-Length' 0;

                return 204;

            }

            proxy_pass http://localhost:8869;

            proxy_set_header Host $host;

            proxy_set_header X-Real-IP $remote_addr;

            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

            proxy_set_header X-Forwarded-Proto $scheme;

        }

        location ~ \.php(.*)$ {

            fastcgi_pass   127.0.0.1:9001;

            fastcgi_index  index.php;

            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            fastcgi_param  PATH_INFO  $fastcgi_path_info;

            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;

            include        fastcgi_params;

        }

}


http://www.kler.cn/a/380702.html

相关文章:

  • 计算机网络:网络层 —— 网络地址转换 NAT
  • 【JavaSE】(2) 方法
  • 【LuatOS】基于WebSocket的同步请求框架
  • 人工智能技术在网络安全领域被恶意利用
  • ENSP (虚拟路由冗余协议)VRRP配置
  • 东北虎豹国家公园shp格式范围
  • 【驱动】地平线X3交叉编译工具搭建、源码下载
  • 基于航片的玉米异常情况识别赛题正在报名中 | CCF BDCI进行时
  • element-plus按需引入报错Components is not a function
  • 什么是AOP面向切面编程?怎么简单理解?
  • npm入门教程11:npm私有包和模块
  • 基于Spring Boot的志愿服务管理系统设计与实现,LW+源码+讲解
  • Chrome 130 版本开发者工具(DevTools)更新内容
  • Python学习笔记-生成器的应用与原理
  • CentOS 7 安装 ntp,自动校准系统时间
  • three.js 智慧城市扫光效果
  • Linux系统基础-多线程超详细讲解(5)_单例模式与线程池
  • Android 网易游戏面经
  • 快来了解一下服务器虚拟化!!!
  • FlowDroid 分析最新Android 构建 APK出错
  • XLSTM+transformer时间序列预测代码
  • Java学习—反射机制:解锁代码的无限可能
  • TMDOG的Gin学习笔记_01——初识Gin框架
  • 【算法】(Python)贪心算法
  • 学习记录:js算法(八十三):全排列
  • CentOS Linux教程(12)--常用编辑器