OPTIONEN http Methoden geben eine leere Antwort auf Heroku

Wenn ich Dinge lokal mache, funktionieren meine CORS-Anrufe einwandfrei

$ curl -i -X OPTIONS "http://localhost:3000/api/v1/login"
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: http://localhost:9000
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: GET,PUT,POST,DELETE,OPTIONS
Access-Control-Allow-Headers: Content-Type
Content-Type: text/plain
Content-Length: 2
Set-Cookie: connect.sid=blablabla; Path=/; HttpOnly
Date: Wed, 02 Apr 2014 13:46:30 GMT
Connection: keep-alive

OK

Aber wenn ich das selbe auf Heroku einsetze und versuche, funktioniert es nicht mehr:

$ curl -i -X OPTIONS "http://<myapp>.herokuapp.com/api/v1/login"
curl: (52) Empty reply from server

Irgendeine Idee woran das liegen könnte?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage