My hunch is that nginx is not passing REQUEST_METHOD correctly. Check

Good guess, that was that.
Added in nginx.conf, and it works like a charm now.

Thank you!


Here is my complete conf entry, if someone need it.

        location / {
          #old default configuration
 ##        root   html;
 ##        index  index.html index.htm;
         #include /etc/nginx/conf/fastcgi.conf; #doesn't work with me.

           fastcgi_pass  127.0.0.1:9000;

           #mandatory fastcgi parameters, for wsapi and Orbit
           fastcgi_param  REQUEST_METHOD     $request_method;
           fastcgi_param   PATH_INFO       $request_uri;
           fastcgi_param  SCRIPT_FILENAME  "/http/nginx/dispatch.lua";

         }



_______________________________________________
Kepler-Project mailing list
Kepler-Project@lists.luaforge.net
http://lists.luaforge.net/cgi-bin/mailman/listinfo/kepler-project
http://www.keplerproject.org/

Reply via email to