Re: Django and mod_proxy

2007-08-06 Thread Przemek Gawronski
> Is that running by runserver:8000? Yep! > Is your django dev server serving static files? Yes, django server is serving static files, in my urlpatterns = patterns('', (r'^js/(?P.*)$', 'django.views.static.serve',{'document_root': '/home/django/work/fw/media/'}), (r'^css/(?P.*)$',

Re: Django and mod_proxy

2007-08-03 Thread Michael
Hi Przemek, Is that running by runserver:8000? Is your django dev server serving static files? What log file is show? On 8/3/07, Matt Davies <[EMAIL PROTECTED]> wrote: > Hi Przemek > > I do, but I hand the request from apache to Lighttpd, which in it's conf > file handles the serving of docs. >

Re: Django and mod_proxy

2007-08-02 Thread Matt Davies
Hi Przemek I do, but I hand the request from apache to Lighttpd, which in it's conf file handles the serving of docs. I'm not sure but I think you need something extra in apche to tell it where the static content is. On 03/08/07, Przemek Gawronski <[EMAIL PROTECTED]> wrote: > > > Hi, I'm havin

Django and mod_proxy

2007-08-02 Thread Przemek Gawronski
Hi, I'm having some problems running Django behind an Apache with a mod_proxy. So my router transmits all it's communication on port 80 to 192.168.0.2, on which I've setup mod_proxy (with django server on 192.168.1.2, the networks see each other) ProxyRequests On ProxyPass /django/ http://192.1