Handling OPTIONS request in nginx - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:16:35Zhttp://stackoverflow.com/feeds/question/227939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227939/handling-options-request-in-nginx1Handling OPTIONS request in nginxctmiller2008-10-22T23:42:19Z2009-10-28T07:00:03Z
<p>We're using HAProxy as a load balancer at the moment, and it regularly makes requests to the downstream boxes to make sure they're alive using an OPTIONS request:</p>
<blockquote>
<p>OPTIONS /index.html HTTP/1.0</p>
</blockquote>
<p>I'm working with getting nginx set up as a reverse proxy with caching (using ncache). For some reason, nginx is returning a 405 when an OPTIONS request comes in:</p>
<blockquote>
<p>192.168.1.10 - - [22/Oct/2008:16:36:21 -0700] "OPTIONS /index.html HTTP/1.0" 405 325 "-" "-" 192.168.1.10</p>
</blockquote>
<p>When hitting the downstream webserver directly, I get a proper 200 response. My question is: how to you make nginx pass that response along to HAProxy, or, how can I set the response in the nginx.conf?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/227939/handling-options-request-in-nginx/272787#2727870Answer by ctmiller for Handling OPTIONS request in nginxctmiller2008-11-07T17:12:51Z2008-11-07T17:12:51Z<p>Wanted to follow up on this. The answer was that ngnix does not handle these requests. We're writing a module to deal with that, and hope to contribute it back to the community.</p>