Re: Question in document "How to use Django with Apache and mod_wsgi"

2012-10-18 Thread Tomas Ehrlich
mes > > From: Tomas Ehrlich > Date: 2012-10-19 00:48 > To: django-users > Subject: Re: Question in document "How to use Django with Apache and mod_wsgi" > Hello, > have you set proper aliases in apache site config? > > Alias /robots.txt /path/to/mysite.com/st

Re: Re: Question in document "How to use Django with Apache and mod_wsgi"

2012-10-18 Thread Dae James
ave when I run this site on development server or when I just set DEBUG in settings.py to True. Dae James From: Tomas Ehrlich Date: 2012-10-19 00:48 To: django-users Subject: Re: Question in document "How to use Django with Apache and mod_wsgi" Hello, have you set proper aliases

Re: Question in document "How to use Django with Apache and mod_wsgi"

2012-10-18 Thread Tomas Ehrlich
Hello, have you set proper aliases in apache site config? Alias /robots.txt /path/to/mysite.com/static/robots.txt Alias /favicon.ico /path/to/mysite.com/static/favicon.ico AliasMatch ^/([^/]*\.css) /path/to/mysite.com/static/styles/$1 Alias /media/ /path/to/mysite.com/media/ Alias /static/ /path

Question in document "How to use Django with Apache and mod_wsgi"

2012-10-18 Thread Dae_James
The url of the document is: https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/modwsgi/ I can't succeed at the last part, "Serving the admin files". My admin page is as follows.