Opened 9 years ago

Closed 8 years ago

Last modified 8 years ago

#25104 closed Cleanup/optimization (fixed)

Documentation assumes that there's a httpd.conf

Reported by: Christian Kleineidam Owned by: za
Component: Documentation Version: 1.8
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

The Deployment docs say on https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/modwsgi/ that code has to be added to the httpd.conf . The latest version of Apache2 on Ubuntu doesn't have a httpd.conf file. It would be nice if the documentation would address where to put the code in Ubuntu.

Change History (9)

comment:1 by Tim Graham, 9 years ago

Triage Stage: UnreviewedAccepted

comment:2 by James Bennett, 9 years ago

Easy pickings: set

comment:3 by Landon Jurgens, 9 years ago

Owner: changed from nobody to Landon Jurgens
Status: newassigned

comment:4 by Seth Gottlieb, 9 years ago

I think that the correct answer here is to edit a virtual host rather than the root httpd.conf On Ubuntu, that would be: /etc/apache2/sites-enabled/<<virtual host such as default or 000-default>>

On ubuntu, the files in sites-enabled are symlinks from /etc/apache2/sites-available

comment:5 by Tim Graham, 9 years ago

Yes, I think we should include a brief discussion of virtual hosts.

comment:6 by Tim Graham, 8 years ago

Owner: Landon Jurgens removed
Status: assignednew

comment:7 by za, 8 years ago

Owner: set to za
Status: newassigned

comment:8 by Tim Graham <timograham@…>, 8 years ago

Resolution: fixed
Status: assignedclosed

In d9e150b:

Fixed #25104 -- Added httpd.conf hyperlink to modwsgi doc.

comment:9 by Tim Graham <timograham@…>, 8 years ago

In 0d6633d:

[1.9.x] Fixed #25104 -- Added httpd.conf hyperlink to modwsgi doc.

Backport of d9e150b3117521f7c24dc6393eb29eebc3cc376a from master

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