This commit is contained in:
2019-04-12 21:55:09 +02:00
commit 9c1338c0c2
14 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
WSGIDaemonProcess django-test processes=1 threads=4 display-name=django-test python-home=/var/www/wsgi/django-test/python python-path=/var/www/wsgi/django-test/django
Alias /static/ "/var/www/wsgi/django-test/django/var/www/static/"
<Directory "/var/www/wsgi/django-test/django/var/www/static">
AllowOverride None
Require all granted
</Directory>
WSGIScriptAlias / "/var/www/wsgi/django-test/django/main/wsgi.py"
<Directory "/var/www/wsgi/django-test/django/main">
WSGIProcessGroup django-test
WSGIPassAuthorization On
AllowOverride None
Options FollowSymLinks
<Files wsgi.py>
Require all granted
</Files>
</Directory>