Re: apache2+mod_wsgi: 403 Forbidden

2009-09-09 Thread Léon Dignòn
I solved the Problem. It was my fault and because of that the default virtual host served the request. :( Thank you for your help! On 9 Sep., 01:21, Graham Dumpleton wrote: > On Sep 9, 12:28 am, Matias wrote: > > > sorry, I messed up! > >

Re: apache2+mod_wsgi: 403 Forbidden

2009-09-08 Thread Graham Dumpleton
On Sep 9, 12:28 am, Matias wrote: > sorry, I messed up! > > I'm not sure now, i couldn't test it, but maybe you should set the Directory > directive in the specific path where wsgi files are > > >        Order Allow,Deny >        Deny from all > > Don't use

Re: apache2+mod_wsgi: 403 Forbidden

2009-09-08 Thread Matias
sorry, I messed up! I'm not sure now, i couldn't test it, but maybe you should set the Directory directive in the specific path where wsgi files are Order Allow,Deny Deny from all Order Allow,Deny Allow from all Regards, Matias. On Tue, Sep 8, 2009 at 11:04 AM,

Re: apache2+mod_wsgi: 403 Forbidden

2009-09-08 Thread Matias
You should use Directory with the real path, not the alias Order Allow,Deny Deny from all Order Allow,Deny Allow from all like in the example :) Regards, Matias. On Mon, Sep 7, 2009 at 5:56 PM, Léon Dignòn wrote: > > No, I have it here,

Re: apache2+mod_wsgi: 403 Forbidden

2009-09-07 Thread Léon Dignòn
No, I have it here, but forgot to post it: Order Allow,Deny Deny from all Order Allow,Deny Allow from all On Sep 7, 10:11 pm, Matias wrote: > I think you missed the allow directive in your apache conf. > > Example from [1] > > Alias

Re: apache2+mod_wsgi: 403 Forbidden

2009-09-07 Thread Matias
I think you missed the allow directive in your apache conf. Example from [1] Alias /media/ /usr/local/django/mysite/media/ Order deny,allow Allow from all WSGIScriptAlias / /usr/local/django/mysite/apache/django.wsgi Order deny,allow Allow from all [1]

apache2+mod_wsgi: 403 Forbidden

2009-09-07 Thread Léon Dignòn
I get a 403 forbidden. I serve Django with apache2+mod_wsgi. I disabled some plugins I think I don't need. Set the listen port to 8000 on localhost only. Later I will serve django through reverse proxy on cherokee webserver. But for now, localhost:8000 is returning a 403 forbidden error. Any