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.

Getting 500 Internal Server Error when setting up Python and Flask with FastCgiModule on Windows

Anyone able to set up Python with IIS? Been trying to figure it out, but it's not working and it's …

python iis flask fastcgi
WSGIServer errors when trying to run Django app

Firstly, here's my script: #!/usr/bin/python import sys, os sys.path.append('/home/username/python') sys.path.append("/…

django fastcgi wsgiserver
FastCGI application behind NGINX is unable to detect that HTTPS secure connection is used

I'm running FastCGI behind Nginx, and need to detect when the url is accessed via HTTPS. However, my Django web …

django nginx fastcgi
Nginx + phpFPM: PATH_INFO always empty

I configured nginx stable (1.4.4) + PHP (using FastCGI, php-fpm) on Debian. That works fine: location ~* ^/~(.+?)(/.*\.php)$ { fastcgi_split_path_info ^(.+?\.php)(/.*)$; …

nginx fastcgi php
Xdebug configuration with PHP fastcgi and eclipse?

I have been using eclipse-pdt in conjunction with xdebug and apache without problems, for over one year. Things worked flawlessly …

php eclipse fastcgi xdebug eclipse-pdt
Flask: Static files in subdirectories

In my flask template file I include a css file (I ommited the boilerplate) like this: url_for('static', filename=…

python flask fastcgi url-for
NGINX/PHP downloading instead of executing

I have an NGINX server with fastcgi/PHP running on it. I need to add userdirs to it, but I …

php nginx fastcgi
What does the GDB backtrace message "0x0000000000000000 in ?? ()" mean?

What does it mean when it gives a backtrace with the following output? #0 0x00000008009c991c in pthread_testcancel () from /…

c++ gdb pthreads fastcgi freebsd
multiple php on apache centos

How can I get multiple php versions running on Centos 6.5 at the same time ? Here's how. Requirements Centos 6.5 (Possible works …

php apache centos fastcgi phpfarm
How to gracefully restart django running fcgi behind nginx?

I'm running a django instance behind nginx connected using fcgi (by using the manage.py runfcgi command). Since the code …

django nginx deployment fastcgi