ฉันพยายามหาวิธีนำคำขอทั้งหมดไปยังไดเรกทอรีเฉพาะและคืนค่าสตริง json โดยไม่เปลี่ยนเส้นทางใน nginx
ตัวอย่าง:
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 conf:
location ~ ^/api/(.*)$ {
index /api_logout.json;
alias /path/to/file/api_logout.json;
types { }
default_type "application/json; charset=utf-8";
break;
}
อย่างไรก็ตามเมื่อฉันพยายามที่จะทำให้คำขอประเภทเนื้อหาไม่ติด:
$ 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}
มีวิธีที่ดีกว่าในการทำเช่นนี้? ฉันจะทำให้แอปพลิเคชัน / json ประเภทติดได้อย่างไร
แก้ไข: ทางออก!
ฉันคิดว่าคุณสามารถส่งสตริงเองได้ในคำสั่ง return ดังนั้นฉันก็ทำได้แทนที่จะใช้นามแฝง!
รหัสสุดท้ายที่ฉันใช้:
location /api {
types { }
default_type "application/json";
return 200 "{\"logout\" : true"}";
}