Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#10434 closed (fixed)

Lighttpd and FastCGi configuration

Reported by: vithlani Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords: lighttpd, FastCGI, fcgi, admin
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hello,

The documentation at:
http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/#lighttpd-setup

has a small error that causes the media in the admin application to not load.

Error line:

alias.url = (
    "/media/" => "/home/user/django/contrib/admin/media/",
)

Should be:

alias.url = (
    "/media" => "/home/user/django/contrib/admin/media/",
)

The slash at the end of the word 'media' on the left is the problem according to:
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModAlias

Attachments (1)

fastcgi-typo.diff (437 bytes ) - added by Tim Graham 15 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 by Jacob, 15 years ago

milestone: 1.1
Triage Stage: UnreviewedAccepted

by Tim Graham, 15 years ago

Attachment: fastcgi-typo.diff added

comment:2 by Tim Graham, 15 years ago

Triage Stage: AcceptedReady for checkin

comment:3 by Tim Graham, 15 years ago

Has patch: set

comment:4 by Russell Keith-Magee, 15 years ago

Resolution: fixed
Status: newclosed

(In [10150]) Fixed #10434 -- Corrected FastCGI example. Thanks to vithlani.

comment:5 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top