Graham, Thanks, but I'm running Windows.
Anthony On Jan 19, 12:24 am, Graham Dumpleton <[email protected]> wrote: > On Wednesday, January 19, 2011 12:52:14 AM UTC+11, tonton wrote: > > > now it is seems to be mod_wsgi > > > in apache/conf.d/ yoursite.conf > > > WSGIScriptAlias / /path/to/your/djangoproject/wsgi_handler.py > > > WSGIDaemonProcess djangoproject user=CCC group=CCC processes=5 > > threads=1 > > WSGIProcessGroup djangoproject > > They are on Windows so they can't use mod_wsgi daemon mode. > > The best choice for Python web hosting would be not to use Windows in the > first place. ;-) > > Graham > > > and had to write an wsgi_handler in djangoproject root where you have > > settings.py like > > > import sys > > import os > > sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/..') > > os.environ['DJANGO_SETTINGS_MODULE'] = 'Djangoproject.settings' > > > import django.core.handlers.wsgi > > application = django.core.handlers.wsgi.WSGIHandler() > > > things to replace DjangoProject by the name of your project ! > > / is your web root > > so no other path will work instead you add an alias for apache > > > Alias /aOtherPath/ /taget/to/a/OtehrPater/ > > > tonton > > > On Tue, Jan 18, 2011 at 2:22 PM, ashdesigner <[email protected]> wrote: > > >> Hello, > > >> On my VPS, I've got Apache running on MS Windows Server 2008 R2. What > >> is the best way you suggest to plug in Python to be used in a > >> relatively highly loaded webproject (on Django)? mod_python, > >> fastCGI?... What are advantages and drawbacks, from your real > >> experience? I'm new to both Python and Django, so I would appreciate > >> how-tos as well (particular urls to faqs/docs will do, of course). > > >> Thanks, > >> Anthony > > >> -- > >> You received this message because you are subscribed to the Google Groups > >> "Django users" group. > >> To post to this group, send email to [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]. > >> For more options, visit this group at > >>http://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

