今天搞了半天的跨域问题,想通过nginx配置跨域,希望以后本地调试程序都不用为这件事烦心。无非就是设置几个请求头: add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods *; add_hea ...
分类:
Web程序 时间:
2020-01-14 22:15:39
阅读次数:
390
用http 访问 https域名, 报跨越问题 解决方法: 在nginx相应服务的转发配置下添加: add_header 'Access-Control-Allow-Origin' 'http://im.tinywan.com'; add_header 'Access-Control-Allow-H ...
分类:
Web程序 时间:
2020-01-14 16:19:45
阅读次数:
291
fdfs 存储节点storage安装nginx,修改nginx配置文件 location /group1/M00/ { root /fdfs/storage/data; if ($arg_attname ~ "^(.+)") { #设置下载 add_header Content-Type appli ...
分类:
其他好文 时间:
2019-12-21 17:04:59
阅读次数:
134
有时候在服务器上配置某些文件比如TXT文件,在浏览器打开的时候,会弹出下载。如何只让他在浏览器中显示,而不是下载呢。在nginx配置文件中添加一行代码 add_header Content-Type text/plain; //文件内容以文本格式显示//例如 location = /md/test. ...
分类:
其他好文 时间:
2019-12-12 12:45:38
阅读次数:
281
fdfs 存储节点storage安装nginx,修改nginx配置文件 location ~/group[1-9]/M00 { if ( $query_string ~* ^(.*)parameter=config\b|1\b(.*)$ ){ add_header Content-Dispositi ...
分类:
Web程序 时间:
2019-11-27 12:29:00
阅读次数:
503
location / { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; add_header Access-Control-Allow-H ...
分类:
其他好文 时间:
2019-11-16 10:45:14
阅读次数:
81
web_add_auto_header 向后续所有请求添加信息头 例:web_add_auto_header("Accept-Encoding","gzip"); web_add_header 给下一个请求添加信息头 例:web_add_header("User-Agent", "Mercury B ...
分类:
其他好文 时间:
2019-11-10 13:25:09
阅读次数:
86
1) 响应头 add_header 例如: 要小心Nginx的add_header指令详解: 当当前层级中没有add_header指令才会继承父级设置。所以我的疑问就清晰了:location中有add_header,nginx.conf中的配置被丢弃了。 例如你在 location层添加了一个add ...
分类:
其他好文 时间:
2019-10-04 14:47:16
阅读次数:
1563
找到nginx安装目录下的nginx.conf文件,再nginx里面添加如下的内容 location / { add_header Cache-Control no-cache; add_header Pragma no-cache; add_header Expires 0; } ...
分类:
其他好文 时间:
2019-08-13 21:05:49
阅读次数:
310
在配置nginx 服务器的时候,一直报 404 not find 经查在前端访问后端的过程,存在着跨域行为,需要在头文件添加一些参数如下 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers ...
分类:
其他好文 时间:
2019-06-30 11:12:31
阅读次数:
118