* hito koto wrote:

I have  the following error:
[Tue May 13 14:43:47 2014] [warn] The Alias directive in
/etc/httpd/conf.d/wsgi.conf at line 17 will probably never match because
it overlaps an earlier Alias.

This is my the : /etc/httpd/conf.d/wsgi.conf

Alias /static/  "/django_test/skillshare/skillshare/static/"

Alias /static/  "/mysite/test/test/static/"

Alias /static/  "/mysite/abc/test/test/static/"

You are attempting to map /static/ to three different directories at once. There are a few things you can do to fix this:

- Use virtual hosts
- Change /static/ to include the site name, e.g. /mysite/static/
- Or the other way around: /static/mysite/
- Or just throw the static content for all three sites into one big
  heap, which will work just as well as long as no file names conflict.

--
Christian



--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/lksl2n%247tj%241%40ger.gmane.org.
For more options, visit https://groups.google.com/d/optout.

Reply via email to