Created
November 3, 2009 18:14
-
-
Save djacobs/225303 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bobcousy@bobcousyslisp.com [~/public_html]# cat dispatch.fcgi | |
#!/usr/local/bin/python2.5 | |
import sys | |
import os | |
sys.path.append('/home/bobcousy/local/lib/python2.5/site-packages') | |
sys.path.append('/home/bobcousy/public_html/mymotion') | |
os.environ['DJANGO_SETTINGS_MODULE'] = 'mymotion.settings' | |
from django.core.servers.fastcgi import runfastcgi | |
runfastcgi(method="threaded", daemonize="false") | |
bobcousy@bobcousyslisp.com [~/public_html]# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment