= Django using the Flup FastCGI Module = First you will need the [http://www.saddi.com/software/flup/dist/ Flup Package]. There is an egg, which can get installed very easy using `easy_install`. == FastCGI == For FastCGI you need a file called `yourapplication.fcg`. Insert the following code: {{{ #!python #!/usr/bin/env python import os import sys from flup.server.fcgi import WSGIServer from django.core.handlers.wsgi import WSGIHandler sys.path.insert(0, '/path/to/your/application') os.environ['DJANGO_SETTINGS_MODULE'] = 'yourapplication.settings' WSGIServer(WSGIHandler()).run() }}} Save somewhere (eg `/usr/lib/cgi-bin`) and open your apache.conf. Insert the following VHost: {{{ ServerName www.yourserver.com ServerAlias yourserver.com # Uncomment the next line when you want to use Suexec ##SuexecUserGroup youruser yourgroup ScriptAlias / /path/to/yourapplication.fcg/ }}} Enable and restart the Apache.