UPD: so many improvements :)

This commit is contained in:
2019-04-13 15:34:59 +02:00
parent aa1a4dbc72
commit d219a6101f
18 changed files with 111 additions and 39 deletions

View File

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