19 lines
585 B
Plaintext
19 lines
585 B
Plaintext
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>
|