[PYTHON] Arbeiten mit mehreren Django-Projekten unter Apache (WSGIDaemonProcess)

So schreiben Sie eine Conf, wenn Sie mit verschiedenen Django-Projekten auf mehreren virtuellen Hosts arbeiten.

<VirtualHost *:80>
ServerName project-1.com
WSGIDaemonProcess project-1 python-path=/path/to/foo:path/to/bar
WSGIProcessGroup project-1
WSGIScriptAlias / /path/to/wsgi.py process-group=project-1
...
</VirtualHost>

<VirtualHost *:80>
ServerName project-2.com
WSGIDaemonProcess project-2 python-path=/path/to/foo:path/to/bar
WSGIProcessGroup project-2
WSGIScriptAlias / /path/to/wsgi.py process-group=project-2
...
</VirtualHost>

Recommended Posts

Arbeiten mit mehreren Django-Projekten unter Apache (WSGIDaemonProcess)
Python3 + Django ~ Mac ~ mit Apache
Behandeln Sie CSV-Dateien mit Django (Django-Import-Export)
Legen Sie mit Apache + mod_wsgi mehrere WSGIPythonPath fest
Django + Apache mit mod_wsgi unter Windows Server 2016
CentOS 6.4, Python 2.7.3, Apache, mod_wsgi, Django
Speichern Sie mehrere Modelle in einem Formular mit Django
Internationalisierung mit Django
CRUD mit Django
Konfigurieren Sie ein Modul mit mehreren Dateien in Django
Authentifizieren Sie Google mit Django
Django 1.11 wurde mit Python3.6 gestartet
Laden Sie Dateien mit Django hoch
Mehrfachauswahl mit Jupyter
Entwicklungsverdauung mit Django
PDF mit Django ausgeben
Markdown-Ausgabe mit Django
Verwenden Sie Gentelella mit Django
Twitter OAuth mit Django
Erste Schritte mit apache2
Erste Schritte mit Django 1
Behandle Excel mit Python
Mail mit Django senden
Behandle Rabbimq mit Python
Datei-Upload mit Django
Verwenden Sie WENIGER mit Django
Pooling mechanisieren mit Django
Verwenden Sie MySQL mit Django
Django ab heute
Erste Schritte mit Django 2
Umgang mit statischen Dateien bei der Bereitstellung in der Produktion mit Django
Richten Sie einen Webserver mit CentOS7 + Anaconda + Django + Apache ein