Add setup guide for apache2 with mod_wsgi

Cette révision appartient à :
Fabian Schlager 2014-11-18 14:39:54 +01:00
Parent 6c7095ec5a
révision bcccc7da57
1 fichiers modifiés avec 45 ajouts et 0 suppressions

Voir le fichier

@ -149,6 +149,51 @@ Reload Nginx
sudo service nginx reload
### Apache + mod_wsgi Setup
sudo apt-get install -y apache2 libapache2-mod-wsgi
Create a virtual host configuration in /etc/apache2/sites-available/realms_vhost:
<VirtualHost *:80>
ServerName wiki.example.org
WSGIDaemonProcess realms_wsgi display-name=%{GROUP}
WSGIProcessGroup realms_wsgi
WSGIScriptAlias / /var/www/my-realms-dir/wsgi.py
Alias /static /full/path/to/realms/static
</VirtualHost>
Create /var/www/my-realms-dir/wsgi.py
import os
import site
# Uncomment the following lines if you are using a virtual environment
# ----------------------------------
# Enter path to your virtualenv's site-packages directory
# VENV_SITE_DIR = ".venv/lib/python2.7/site-packages"
# PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
# site.addsitedir(os.path.abspath(os.path.join(PROJECT_ROOT, VENV_SITE_DIR)))
# ----------------------------------
from realms import create_app
application = create_app()
Enable the virtual host
sudo a2ensite realms_vhost
Test your configuration
apache2ctl configtest
Reload apache
sudo service apache2 reload
### Mysql Setup
sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev