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.

Laravel routes not found after nginx install

After I changed ICG to nginx all routes except index page does not work. Laravel Config: #/etc/nginx/sites-enabled/laravel …

php apache laravel nginx fastcgi
pesky popular "No input file specified." with nginx_php-fastcgi

I didn't have this problem earlier until I changed the include path on my php.ini in hopes of being …

php nginx fastcgi
nginx "server" directive with multiple "server_name" entries: always first one is passed to PHP's $_SERVER['SERVER_NAME']

My configuration file has a server directive block that begins with... server { server_name www.example1.com www.example2.com …

php nginx configuration fastcgi
Send additional header to FastCGI backend with nginx

I use nginx with several fastcgi backends (php-cgi, mod-mono-fastcgi4). Now I need to sent an additional http header to the …

nginx http-headers fastcgi
Apache or Nginx to serve Django applications?

I want to deploy a Django web application, and hence I need to choose a web server to serve the …

django apache nginx mod-wsgi fastcgi
How to fix FastCGI timeout issues in Plesk?

PHP support is currently set to: run as Fast CGI. I keep getting these errors in my server log: mod_…

php centos fastcgi plesk connection-timeout
Nginx 502 Bad Gateway. Solved by increasing buffer. Why?

I'm in the process of setting up a LEMP stack to run Drupal. I installed Nginx and PHP-FastCGI. Nginx worked …

php nginx fastcgi
How to share APC cache between several PHP processes when running under FastCGI?

I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I …

php fastcgi apc mmap
Nginx downloads php instead of running it

Iv'e setup an Nginx php server on a linux REHL machine. When accessing html files all goes well, but trying …

php linux nginx fastcgi
Is there a speed difference between WSGI and FCGI?

From the web I've gleaned that WSGI is a CGI for python web development/frameworks. FCGI seems to be a …

python wsgi fastcgi