Tagged Questions
7
votes
2answers
2k views
mod_perl vs mod_fastcgi
I'm developing a web app in Perl with some C as necessary for some heavy duty number crunching. The main problem I'm having so far is trying to decide if I should use mod-perl, mod-fastcgi or both to ...
2
votes
1answer
491 views
Which FastCGI server mode should I choose under Apache?
I am new to FastCGI and looking to use this platform to speed up my existing vanilla CGI (perl) programs.
However in reading the FastCGI/Apache FAQ, it appears I can setup my scripts (once converted ...
1
vote
1answer
62 views
Debugging python with mod_fastcgi
I running apache with mod_fastcgi to run python scripts (using Ubuntu OS).
How can I debug python with fastcgi? I put a pdb.set_trace() call in my script, but when loading the page in a browser ...
1
vote
1answer
147 views
How can I show a maintenance page when my FastCGI app is restarting?
I am serving my FastCGI application in Apache2 using the standalone FastCGI server and the FastCgiExternalServer directive.
When I restart my FastCGI app my users get a 500 error. What can I do to ...
0
votes
2answers
151 views
Accessing environment variable in a fastcgi application
I have writen a fastcGI application using C and C++
I have a free function that returns a string, if a specific environment variable has not been set. The function looks like this:
namespace
{
...
0
votes
2answers
583 views
Can I get a Java Socket from a file descriptor number?
When a program is started via FastCGI, it is exec'd with a socket already open to talk to the web server. The socket's file descriptor number is handed to the program, but how can that be converted to ...