On Fri, Sep 12, 2008 at 9:33 PM, Anders Bergh <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I'm trying to host a Django 1.0 project on lighttpd 1.4.19 on Linux,
> following the lighttpd FastCGI in the Django documentation. However,
> it doesn't work, it seems to redirect to /mysite.fcgi for almost
> anything I do.
>
> Here's the config:
>
> $HTTP["host"] == "labs.lamepunch.org" {
>  fastcgi.server = (
>    "/labs.fcgi" => (
>      "main" => (
>        "socket" => "/srv/django/lamepunch/django.sock",
>        "check-local" => "disable",
>      )
>    ),
>  )
>
>  alias.url = (
>    "/media/" => 
> "/usr/lib/python2.5/site-packages/django/contrib/admin/media/",
>  )
>
>  url.rewrite-once = (
>    "^(/media.*)$" => "$1",
>   "^(/.*)$" => "/labs.fcgi$1",
>  )
> }
>
>
> I run Django like so:
>
> ./manage.py runfcgi socket=django.sock pidfile=django.pid
>
> When I visit the site it gives me a 404:
>
> Page not found (404)
> Request Method:         GET
> Request URL:    http://labs.lamepunch.org/labs.fcgi/
>
> Trying to access the admin I get:
>
> The current URL, labs.fcgi/labs.fcgi/admin/, didn't match any of these.
>
> Any clues? I've been asking around on IRC and experimenting with the
> conf, but nothing has helped yet. I'm sure it worked prior to 1.0.
>

Have you tried what's suggested in

http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#ChangedthewayURLpathsaredetermined

(under the "lighttpd + fastcgi (and others)" sub-section)?

Regards,

-- 
 Ramiro Morales

--~--~---------~--~----~------------~-------~--~----~
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