From b53c22825730d52ae96835da5c94a417195d30a1 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 30 Apr 2009 06:20:00 +0000 Subject: [PATCH] Add a note about Python 2.6. --- docs/evennia_wsgi_apache.conf | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/evennia_wsgi_apache.conf b/docs/evennia_wsgi_apache.conf index 3a03131333..3e96284541 100644 --- a/docs/evennia_wsgi_apache.conf +++ b/docs/evennia_wsgi_apache.conf @@ -1,27 +1,29 @@ # This is an example mod_wsgi apache2 vhost. There are a number of - # things you'll need to change. They are commented below. Make sure + # things you'll need to change. They are commented below. Make sure # you read and understand the stuff below. # Copy this file to your apache2 vhosts directory before editing. # This file is merely a template. The vhost directory is usually # something like /etc/apache2/sites-enabled/. - # You'll want to replace the following with your domain info. + # You'll want to replace the following with your domain info. ServerName dev.evennia.com ServerAlias www.dev.evennia.com # ## BEGIN EVENNIA WEB CONFIG # - # evennia_web is just an internal name for mod_wsgi and may be left - # The user and group options are the user and the group that the - # python code will be executed under. This user must have permissions - # to the evennia source. + # evennia_web is just an internal name for mod_wsgi and may be left + # The user and group options are the user and the group that the + # python code will be executed under. This user must have permissions + # to the evennia source. WSGIDaemonProcess evennia_web user=evennia group=evennia threads=25 WSGIProcessGroup evennia_web # This needs to be changed to the appropriate path on your django - # install. It serves admin site media. + # install. It serves admin site media. + # For Python 2.6, this is: + # /usr/lib/python2.6/dist-packages/django/contrib/admin/media/ Alias /media/amedia/ "/usr/lib/python2.5/site-packages/django/contrib/admin/media/" Order allow,deny