Sto cercando di capire come portare tutte le richieste fatte in una particolare directory e restituire una stringa json senza reindirizzamento, in nginx.
Esempio:
curl -i http://example.com/api/call1/
Risultato atteso:
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}
Ecco cosa ho finora nella mia conf nginx:
location ~ ^/api/(.*)$ {
index /api_logout.json;
alias /path/to/file/api_logout.json;
types { }
default_type "application/json; charset=utf-8";
break;
}
Tuttavia, quando provo a fare la richiesta il Content-Type non si attacca:
$ 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}
C'è un modo migliore per farlo? Come posso applicare l'applicazione / tipo json?
EDIT: soluzione!
Ho capito che puoi semplicemente inviare stringhe manuali nell'istruzione return, quindi l'ho fatto invece di usare gli alias!
Codice finale che ho usato:
location /api {
types { }
default_type "application/json";
return 200 "{\"logout\" : true"}";
}