Nginx添加标头PHP FPM返回错误

前端之家收集整理的这篇文章主要介绍了Nginx添加标头PHP FPM返回错误 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用带有NginxPHP-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,Accept";
    add_header Access-Control-Allow-Credentials "true";
    add_header Access-Control-Max-Age: 86400;

    }

    location ~ /\.ht {
        deny all;
    }
}
最佳答案
Nginxdocs say that add_header

Adds the specified field to a response header provided that the
response code equals 200,201,204,206,301,302,303,304,or 307
.

作为HttpHeadersMoreModule的替代方案,您可以在Laravel中添加标头,方法如下:https://stackoverflow.com/a/17550224

原文链接:https://www.f2er.com/nginx/532249.html

猜你在找的Nginx相关文章