Re: Apache configuration

2010-07-10 Thread Anders Petersson
Hi, Please use mod_wsgi instead of mod_python, it is better in all ways. http://docs.djangoproject.com/en/1.2/howto/deployment/modwsgi/#howto-deployment-modwsgi Best, Anders Petersson On Jul 10, 7:49 pm, octopusgrabbus wrote: > I worked through samples in the Visual Quickpro Guide Django. I us

Re: Apache configuration

2007-05-22 Thread Daniel Ellison
On Monday 21 May 2007 14:27:02 dystopia wrote: > I'm worried that I haven't set this up properly, because in effect the > application (which is for test purposes) should really run off the > main domain rather than requiring to be accessed through a folder. Alternatively, you could set up a tempo

Re: Apache configuration

2007-05-22 Thread Vance Dubberly
James, If I get you right the request path is ^mysite/admin/ so ^admin shouldn't work. You've got to update all your top level urls to ^mysite/module_name as such (r'^mysite/admin/', include('django.contrib.admin.urls')), Also the stuff in the virtual host isn't neccesary if you are mounti