#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)
Change History (6)
comment:1 by , 16 years ago
milestone: | → 1.1 |
---|---|
Triage Stage: | Unreviewed → Accepted |
by , 16 years ago
Attachment: | fastcgi-typo.diff added |
---|
comment:2 by , 16 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
comment:3 by , 16 years ago
Has patch: | set |
---|
comment:4 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [10150]) Fixed #10434 -- Corrected FastCGI example. Thanks to vithlani.