diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-08-03 13:42:28 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-08-03 13:42:28 +0200 |
commit | c50e0f356cd5a860135b458aa56e92d0e1924e03 (patch) | |
tree | 7d2726907122b24dc0f802bd4eec9f090c5ddf71 /apache | |
parent | 36ca107c16c520bdd05a4615a3bbd2ecd159324a (diff) | |
download | Chimère-c50e0f356cd5a860135b458aa56e92d0e1924e03.tar.bz2 Chimère-c50e0f356cd5a860135b458aa56e92d0e1924e03.zip |
Documentation: update installation and upgrade procedure.
Diffstat (limited to 'apache')
-rw-r--r-- | apache/apache-wsgi.conf | 6 | ||||
-rw-r--r-- | apache/django.wsgi | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/apache/apache-wsgi.conf b/apache/apache-wsgi.conf index bd6ea55..4bd2b81 100644 --- a/apache/apache-wsgi.conf +++ b/apache/apache-wsgi.conf @@ -2,10 +2,8 @@ ServerName chimere.example.com WSGIDaemonProcess chimere processes=2 maximum-requests=500 threads=1 WSGIProcessGroup chimere - WSGIScriptAlias / /var/local/chimere/chimere/apache/django.wsgi - Alias /static "/var/local/chimere/example_project/static" - Alias /media "/var/local/chimere/example_project/media" - Alias /admin-media "/usr/lib/python2.7/dist-packages/django/contrib/admin/media/" + WSGIScriptAlias / /var/local/chimere/chimere/apache/mydjango.wsgi + Alias /static "/var/local/chimere/mychimere_project/static" Alias /tinymce "/usr/share/tinymce/www" <Directory "/usr/share/tinymce/www/"> Options Indexes MultiViews FollowSymLinks diff --git a/apache/django.wsgi b/apache/django.wsgi index dc3d9f4..6227ee2 100644 --- a/apache/django.wsgi +++ b/apache/django.wsgi @@ -1,5 +1,5 @@ import os, sys sys.path.append('/var/local/django/chimere/') -os.environ['DJANGO_SETTINGS_MODULE'] = 'example_project.settings' +os.environ['DJANGO_SETTINGS_MODULE'] = 'mychimere_project.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() |