Opened 16 years ago

Closed 16 years ago

Last modified 15 years ago

#8925 closed (invalid)

Confusing text in "Running a development server with mod_python"

Reported by: tofu Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

There seems to be quite strange sentence in the first paragraph of the Running a development server with mod_python. See the last sentence:But don't do that on a production server, or we'll revoke your Django privileges.

This is probably related to rules on a hosting company the docs autor used some time ago and IMHO does not have anything to do here. Consider to remove it or change to neutral meaning - try maybe your hosting provider might revoke your privileges etc.

Thanks

Change History (2)

comment:1 by arien, 16 years ago

Resolution: invalid
Status: newclosed

The comment refers to setting MaxRequestsPerChild to 1 in your Apache configuration to avoid having to restart the server.

This directive determines the number of requests that an Apache child process will handle before it dies; setting it to 1 will cause Apache to fork a new child process for every request (reloading everything), greatly degrading performance.

The comment about revoking your (fictitious) Django privileges is a humorous way of saying that doing this is a bad idea in a production environment.

Closing as invalid.

comment:2 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

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