Nginx添加标头PHP FPM返回错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx添加标头PHP FPM返回错误相关的知识,希望对你有一定的参考价值。
我正在使用带有nginx和php-FPM的Laravel 4来提供应用程序。
该应用程序实现了一个API,但我已经向Nginx添加了一些相当开放的CORS规则,这些规则似乎工作正常。
每当应用程序抛出错误时,Nginx似乎都不会将标头添加为响应的一部分。有没有办法强制这个而不必安装更多的头扩展?
我的配置如下:
server {
listen 80;
server_name mediabase.local;
root /home/vagrant/mediabase/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
add_header Access-Control-Allow-Origin "*";
add_header Access-Control-Allow-Methods "GET, OPTIONS, POST, HEAD, DELETE, PUT";
add_header Access-Control-Allow-Headers "Authorization, X-Requested-With, Content-Type, Origin, Accept";
add_header Access-Control-Allow-Credentials "true";
add_header Access-Control-Max-Age: 86400;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/mediabase.local-error.log error;
error_page 404 /index.php;
sendfile off;
location ~ .php$ {
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
add_header Access-Control-Allow-Origin "*";
add_header Access-Control-Allow-Methods "GET, OPTIONS, POST, HEAD, DELETE, PUT";
add_header Access-Control-Allow-Headers "Authorization, X-Requested-With, Content-Type, Origin, Accept";
add_header Access-Control-Allow-Credentials "true";
add_header Access-Control-Max-Age: 86400;
}
location ~ /.ht {
deny all;
}
}
答案
Nginx的docs say那add_header
如果响应代码等于200,201,204,206,301,302,303,304或307,则将指定字段添加到响应头。
作为HttpHeadersMoreModule
的替代品,您可以在Laravel中添加标题,以下是如何完成的:https://stackoverflow.com/a/17550224
另一答案
实际上,解决方案非常简单。 @dened是对的,但在这里如何处理我从这里https://coderwall.com/p/wprykg/cors-with-nginx-for-401-404-501-and-any-other-http-status窃取的这个问题
add_header 'Access-Control-Allow-Origin' * always;
以上是关于Nginx添加标头PHP FPM返回错误的主要内容,如果未能解决你的问题,请参考以下文章
对等方重置连接-同时使用 nginx 和 php-fpm7.2 从上游读取响应标头