App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Functions | Variables
google.appengine._internal.django.core.servers.fastcgi Namespace Reference

Functions

def fastcgi_help
 
def runfastcgi
 

Variables

string __version__ = "0.1"
 
list __all__ = ["runfastcgi"]
 
string FASTCGI_HELP = r""
 
dictionary FASTCGI_OPTIONS
 

Detailed Description

FastCGI (or SCGI, or AJP1.3 ...) server that implements the WSGI protocol.

Uses the flup python package: http://www.saddi.com/software/flup/

This is a adaptation of the flup package to add FastCGI server support
to run Django apps from Web servers that support the FastCGI protocol.
This module can be run standalone or from the django-admin / manage.py
scripts using the "runfcgi" directive.

Run with the extra option "help" for a list of additional options you can
pass to this server.

Variable Documentation

dictionary google.appengine._internal.django.core.servers.fastcgi.FASTCGI_OPTIONS
Initial value:
1 = {
2  'protocol': 'fcgi',
3  'host': None,
4  'port': None,
5  'socket': None,
6  'method': 'fork',
7  'daemonize': None,
8  'workdir': '/',
9  'pidfile': None,
10  'maxspare': 5,
11  'minspare': 2,
12  'maxchildren': 50,
13  'maxrequests': 0,
14  'debug': None,
15  'outlog': None,
16  'errlog': None,
17  'umask': None,
18 }