update the apache config in the ansible role

This commit is contained in:
Andreas Zweili 2017-11-14 19:13:58 +01:00
parent c539123a47
commit 4e6471716d
1 changed files with 9 additions and 10 deletions

View File

@ -1,3 +1,6 @@
WSGIScriptAlias / /vagrant/django/didgeridoo/didgeridoo/wsgi.py
WSGIPythonPath /vagrant/django/didgeridoo/
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
@ -20,17 +23,13 @@
</Directory>
<Directory /vagrant/django/didgeridoo/media>
Require all granted
</Directory>
<Directory /vagrant/django/didgeridoo/static>
Require all granted
</Directory>
WSGIScriptAlias / /vagrant/django/didgeridoo/didgeridoo/wsgi.py
WSGIDaemonProcess didgeridoo python-path=/vagrant/django/didgeridoo processes=2 threads=15 display-name=%{GROUP}
WSGIProcessGroup didgeridoo
<Directory /vagrant/django/didgeridoo/media>
Require all granted
</Directory>
<Directory /vagrant/django/didgeridoo/static>
Require all granted
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.