Top "Fastcgi" questions

FastCGI is an optimized implementation of the CGI interface that aims to reduce the processing overhead for each CGI request on a webserver.

how to nginx virtual servers + fcgi for django?

I would like to run several virtual hosts via nginx, each serving a different django app via fcgi. Is this …

django nginx fastcgi
how to access a body of POST request using fastcgi C/C++ application

I am using a library from http://fastcgi.com/ in C++ application as a backend and nginx web-server as a …

c++ c web-applications nginx fastcgi
Why does my simple fastCGI Perl script fail?

I'm not of the Perl world, so some of this is new to me. I'm running Ubuntu Hardy LTS with …

perl fastcgi movabletype mod-fcgid
FastCGI on port vs. on socket

I was setting up Django on Cherokee today (using SCGI), and I noticed that the Django docs say that you …

sockets fastcgi scgi
how to config apache2 and fastCGI to run my c++ application

I have written a program with c++ and compiled it with gcc ( like the sample in the fastcgi.com) but …

c++ apache fastcgi
How to change PHP Server API to Apache 2.0 Handler from CGI/FastCGI?

I have a Plesk 12 server in which PHP is running with Server API CGI/FastCGI. But some of my script …

php apache apache2 fastcgi apache2-module
What is the disadvantage of using Django's fastcgi server

I'm using nginx + fastcgi( manage.py runfcgi ...) on production for some of my Django projects. A lot of people suggests …

django deployment fastcgi gunicorn
What is fastcgi_index in nginx used for?

On many sites can be found this nginx location block : location ~ \.php$ { fastcgi_pass 127.0.0.1:9000 fastcgi_index index.php ... } Given the …

nginx fastcgi
Django + FastCGI - randomly raising OperationalError

I'm running a Django application. Had it under Apache + mod_python before, and it was all OK. Switched to Lighttpd + …

python django exception fastcgi lighttpd
How can I run Perl scripts using FastCGI on Nginx?

So I am following this guide: http://technotes.1000lines.net/?p=23 and I am going through the steps. I have …

perl cgi nginx fastcgi