nginx add_header 特定 URI 到 PHP 带有前端控制器的应用程序

nginx add_header on specific URI to PHP app with front controller

我有一个非常标准的设置,带有一个带有前端控制器的类似 symfony2 的应用程序,运行 在 nginx 1.10 和 Centos7 上。一切都按预期工作,在预期的地方阻塞等

server {
    listen 80;

    root /opt/my/code/web;
    index app.php;
    charset utf-8;

    location / {
        try_files $uri $uri/ /app.php$is_args$args;
    }

    # pass the PHP scripts to php5-fpm
    location ~ ^/app\.php(/|$) {

        # problem here
        location ~ ^/recording {
            add_header Content-Type audio/x-wav;
        }

        fastcgi_split_path_info ^(.+?\.php)(/?.*)$;
        fastcgi_pass unix:/var/run/php-fpm.sock;
        fastcgi_index app.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        # Prevents URIs that include the front controller. This will 404:
        internal;
    }

    # return 404 for all other php files not matching the front controller
    location ~ \.php$ {
        return 404;
    }
}

我有一些问题,但最主要的是我想对匹配 /recording 的 URI 进行特殊处理,但它仍然必须通过前端控制器。 (这没有争议,它必须通过前端控制器并修改响应 header 如果 URI 匹配 /recording

由于 try_files 重定向到 location ~ ^/app\.php(/|$) nginx 用于位置匹配的 $uri 参数更新为 /app.php,因此任何嵌套位置都将不起作用。

我不能在前端控制器块之外使用 add_header,因为任何 add_header 指令都会在内部重定向时被丢弃。

显然我也不能将 location ifadd_header 一起使用。

这在 apache 中很容易,但我发现的唯一远程解决方案使用第三方 lua 模块,安装文档在这方面有点单薄,并且考虑在 centos 上从源代码编译它让我心悸。

如果内部重定向打扰了我们,让我们删除内部重定向 :) 您可以使用 fastcgi 配置复制轻松解决它

server {
    listen 80;

    root /opt/my/code/web;
    index app.php;
    charset utf-8;

    location / {
        try_files $uri $uri/ /app.php$is_args$args;
    }

    location ~ ^/recording {
        add_header Content-Type audio/x-wav;
        fastcgi_pass unix:/var/run/php-fpm.sock;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_NAME /app.php;
        fastcgi_param SCRIPT_FILENAME $document_root/app.php;
    }    

    # pass the PHP scripts to php5-fpm
    location ~ ^/app\.php(/|$) {
        fastcgi_split_path_info ^(.+?\.php)(/?.*)$;
        fastcgi_pass unix:/var/run/php-fpm.sock;
        fastcgi_index app.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        # Prevents URIs that include the front controller. This will 404:
        internal;
    }

    # return 404 for all other php files not matching the front controller
    location ~ \.php$ {
        return 404;
    }
}

第二种解决方案只有在您知道所有其他请求的内容类型时才有效。我们可以使用变量。 (顺便说一句,我不建议使用此解决方案,因为更难支持且不可爱:)

server {
    listen 80;

    root /opt/my/code/web;
    index app.php;
    charset utf-8;

    location / {
        try_files $uri $uri/ /app.php$is_args$args;
        set $ct "text/html";
    }

    location ~ ^/recording {
        try_files $uri $uri/ /app.php$is_args$args;
        set $ct "audio/x-wav";
    }    

    # pass the PHP scripts to php5-fpm
    location ~ ^/app\.php(/|$) {
        fastcgi_split_path_info ^(.+?\.php)(/?.*)$;
        fastcgi_pass unix:/var/run/php-fpm.sock;
        fastcgi_index app.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        add_header "Content-Type $ct;

        # Prevents URIs that include the front controller. This will 404:
        internal;
    }

    # return 404 for all other php files not matching the front controller
    location ~ \.php$ {
        return 404;
    }
}