Basically I just have to add this:
http://wiki.nginx.org/HttpFastcgiModule#fastcgi_split_path_info

location / {
        fastcgi_split_path_info ^((?U).+www.tkd1depok.org)(/?.+)$;
 
        fastcgi_param  PATH_INFO          $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED    $document_root$fastcgi_path_info;
        fastcgi_param  SCRIPT_FILENAME   
$document_root$fastcgi_script_name;
        ...
        # previous configuration
}

and that's the cause of empty PATH_INFO. I'm still having an issue with
fpwebfile can't map uri to the correct file (it returns empty string), but I
guess it shouldn't be difficult to solve.



--
View this message in context: 
http://free-pascal-general.1045716.n5.nabble.com/Nginx-FastCGI-and-module-action-vs-module-module-action-action-tp5710411p5710418.html
Sent from the Free Pascal - General mailing list archive at Nabble.com.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to