On Wed, 2007-03-21 at 15:19 -0700, Dan Goldner wrote:
>  Hello,
> 
>  As noted previously I'm serving two independent, low-traffic django
> projects off a single virtual host in order to use SSL without a
> single certificate. Since I want static files to be SSL'd as well,
> these are served from the same virtual host. This seems to be working,
> with one mysterious glitch.
>  All the dynamic stuff works fine for both sites. The problem I'm
> having is that static files from project1 work fine, while static
> files from project2 return a 404. For example, browsing to
>       https://projects.mycompany.com/project1/static/img/logo.jpg
>    returns the logo, while browsing to
>        https://projects.mycompany.com/project2/static/img/logo.jpg
>    returns a 404. All static files are like this, e.g. the project1
> css works but the project2 css has no effect (b/c it's not found).
> I've checked for asymmetries in the settings, urls, and views between
> the two projects; they are basically identical except for "project1"
> vs "project2" in urls etc. I've spent a lot of time with Django and
> modpython and apache docs and still don't really understand what's
> going on.

Since you're talking about static files, this shouldn't involve Django
at all, because those files will just be being retrieved directly. See
if there are any clues in the Apache error logs (what file is it
*really* trying to retrieve, for example). Check that permissions are
the same on both sets of files. Check to see what happens if you
temporarily copy the project1 static files into the project2 location
and try to retrieve them: if it works, there is a problem with accessing
the project2 files specifically, if it doesn't work, there is a problem
with the access path (because the same files behave differently in two
different locations).

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to