我可以将所有目录请求别名为 nginx 中的单个文件吗?

我可以将所有目录请求别名为 nginx 中的单个文件吗?

我正在尝试弄清楚如何在 nginx 中接收对特定目录的所有请求并返回不带重定向的 json 字符串。

例子:

curl -i http://example.com/api/call1/

预期结果:

HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Type: application/json
Date: Fri, 13 Apr 2012 23:48:21 GMT
Last-Modified: Fri, 13 Apr 2012 22:58:56 GMT
Server: nginx
X-UA-Compatible: IE=Edge,chrome=1
Content-Length: 38
Connection: keep-alive

{"logout": true}

以下是我目前在 nginx 配置中的内容:

location ~ ^/api/(.*)$ {
    index /api_logout.json;
    alias /path/to/file/api_logout.json;
    types { }
    default_type "application/json; charset=utf-8";
    break;
}

但是,当我尝试发出请求时,Content-Type 不起作用:

$ curl -i http://example.com/api/call1/
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Type: application/octet-stream
Date: Fri, 13 Apr 2012 23:48:21 GMT
Last-Modified: Fri, 13 Apr 2012 22:58:56 GMT
Server: nginx
X-UA-Compatible: IE=Edge,chrome=1
Content-Length: 38
Connection: keep-alive

{"logout": true}

有没有更好的方法可以做到这一点? 如何使 application/json 类型保持不变?

编辑:解决方案!

我发现您只需在返回语句中发送手动字符串即可,因此我这样做了,而不是使用别名!

我使用的最终代码:

location /api {
    types { }
    default_type "application/json";
    return 200 "{\"logout\" : true"}";
}

答案1

您可以使用重写来获得捕获所有行为。

location /logout.json {
    alias /tmp/logout.json;
    types {
        application/json json;
    }
}
rewrite ^/api/.* /logout.json;

答案2

非常简单。整个配置可以是:

# default.conf
# Add file here: /etc/nginx/html/logout.json

server {
  listen 80;
  rewrite ^.*$ /logout.json last;
}

相关内容