Forum: NGINX nginx perl cgi

Posted by Renaud Allard (Guest)
on 2008-03-13 13:24
Attachment: smime.p7s (3,23 KB)
(Received via mailing list)
Hello,

I have some problems running (perl) cgi scripts with nginx.
I followed the config at http://wiki.codemongers.com/NginxSimpleCGI
Perl scripts work very well as long as they use method=get in forms. If
they use method=post, it seems no input is passed to the cgi.

I saw in perl-fcgi.pl that there was some lines: "if
(($req_params{'REQUEST_METHOD'} eq 'POST') && ($req_len != 0) ){ "
Which should pass the info

Has someone an idea of what's happening?

Regards
Posted by Denis S. Filimonov (Guest)
on 2008-03-13 18:37
Attachment: fastcgi-wrapper.pl (3,21 KB)
(Received via mailing list)
I had the same problem some time ago.
The problem with this script is that it violates CGI specifications 
regarding
POST requests. POSTed data must come to a CGI app from the standard 
input
while this script parses the input and sets variables as if they came 
via a
GET request, passing nothing to app's stdin. Thus, applications that 
follow
specs strictly and expect POST data from stdin, fail.

I've modified the script to fix the problem, feel free to use it.
Posted by Renaud Allard (Guest)
on 2008-03-13 20:34
Attachment: smime.p7s (3,23 KB)
(Received via mailing list)
Denis S. Filimonov wrote:
> I had the same problem some time ago.
> The problem with this script is that it violates CGI specifications regarding 
> POST requests. POSTed data must come to a CGI app from the standard input 
> while this script parses the input and sets variables as if they came via a 
> GET request, passing nothing to app's stdin. Thus, applications that follow 
> specs strictly and expect POST data from stdin, fail.
> 
> I've modified the script to fix the problem, feel free to use it.
> 

Thanks, it works like a charm.
Posted by Nz2007 Nz2007 (nzimas)
on 2008-05-24 20:27
Renaud Allard wrote:
> Denis S. Filimonov wrote:
>> I had the same problem some time ago.
>> The problem with this script is that it violates CGI specifications regarding 
>> POST requests. POSTed data must come to a CGI app from the standard input 
>> while this script parses the input and sets variables as if they came via a 
>> GET request, passing nothing to app's stdin. Thus, applications that follow 
>> specs strictly and expect POST data from stdin, fail.
>> 
>> I've modified the script to fix the problem, feel free to use it.
>> 
> 
> Thanks, it works like a charm.

I too followed the same tutorial, however, when i try to run the script:

# perl /usr/bin/cgiwrap-fcgi.pl&
[1] 17845
# bind/listen: No such file or directory

(I added & at the end because i use Bash).

Hints are much welcome.

Nuno.
Posted by Master Volkov (master_volkov)
on 2009-03-26 21:05
Nz2007 Nz2007 wrote:
> 
> I too followed the same tutorial, however, when i try to run the script:
> 
> # perl /usr/bin/cgiwrap-fcgi.pl&
> [1] 17845
> # bind/listen: No such file or directory
> 
> (I added & at the end because i use Bash).
> 
> Hints are much welcome.
> 
> Nuno.


Look like a dir /var/run/nginx not created

they need by created and you need permission for write into it
Posted by S. B. (polemon)
on 2010-08-08 03:41
I'd like a solution with using spawn-fcgi.

As I understand it, that Perl wrapper forks into background itself.

I have a script where I load all FastCGI wrappers from:

spawn-fcgi -C 3 -u www-data -s /var/run/php-fcgi.sock -P 
/var/run/php-fcgi.pid -- /usr/bin/php5-cgi
spawn-fcgi -F 3 -u www-data -s /var/run/lua-fcgi.sock -P 
/var/run/lua-fcgi.pid -- /usr/bin/wsapi.fcgi

it works very well that way, and I have PID files, that I can use to 
kill the wrappers with:

kill $(cat /var/run/php-fcgi.pid)
kill $(cat /var/run/lua-fcgi.pid)

I'd like a Perl wrapper that works in the same way, meaning that I'd 
pass most stuff with spawn-fcgi. Also, It would give me the possibility 
of controlling how many children I want to spawn (-F switch).

Is there a solution that uses spawn-fcgi? I was looking for something 
like that, But there's only little, and most of it is quite confusing.

Regards,
--polemon
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.