Re: [users@httpd] How to start perl script using FCGID module

2018-08-09 Thread Yehuda Katz
WSGI doesn't work with FastCGI by itself. You can use mod_wsgi, a wsgi->fastcgi wrapper like flup, or change your program to use fcgiapp or python-fastcgi. I think the Flask documentation has some good details and examples: http://flask.pocoo.org/docs/1.0/deploying/ - Y On Thu, Aug 9, 2018 at

Re: [users@httpd] How to start perl script using FCGID module

2018-08-09 Thread Stormy
On 2018-08-09 12:51 PM, Ananya Dey wrote: Thanks for the response Yehuda Katz :) Also, to run python scripts we need to use the WSGI module. So how do we implement that with mod_fcgid? You don't need any *cgi* -- just a2enmod wsgi.conf, works like a dream :=} Paul Regards Ananya On Thu,

Re: [users@httpd] How to start perl script using FCGID module

2018-08-09 Thread Ananya Dey
Thanks for the response Yehuda Katz :) Also, to run python scripts we need to use the WSGI module. So how do we implement that with mod_fcgid? Regards Ananya On Thu, Aug 9, 2018 at 6:50 PM, Yehuda Katz wrote: > The difference between FastCGI and regular CGI is that regular CGI runs > the

Re: [users@httpd] How to start perl script using FCGID module

2018-08-09 Thread Yehuda Katz
The difference between FastCGI and regular CGI is that regular CGI runs the program directly and FastCGI is expected to run continuously and handle requests. If you want to use FastCGI in Perl, you might want to start with a library like PSGI or a framework like Catalyst. - Y Sent from a device

[users@httpd] How to start perl script using FCGID module

2018-08-09 Thread Ananya Dey
Hi, I am trying to run a perl script using fcgid module. I have loaded mod_fcgid module. I have created a directory in apache called fcgi-bin and added the below snippet to my httpd.conf file. AddHandler fcgid-script .pl AllowOverride All Options +Indexes +FollowSymLinks +ExecCGI Require all