partial apache conf update

This commit is contained in:
Andreas Zweili 2017-11-13 22:55:09 +01:00
parent 64a4edd3f6
commit 97b53da9a1
1 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
WSGIScriptAlias / /vagrant/django/webshop/webshop/wsgi.py
WSGIPythonPath /vagrant/django/webshop/
WSGIScriptAlias / /vagrant/django/didgeridoo/didgeridoo/wsgi.py
WSGIPythonPath /vagrant/django/didgeridoo/
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
@ -13,21 +13,21 @@ WSGIPythonPath /vagrant/django/webshop/
ServerAdmin webmaster@localhost
Alias /media/ /vagrant/django/webshop/media/
Alias /static/ /vagrant/django/webshop/static/
Alias /media/ /vagrant/django/didgeridoo/media/
Alias /static/ /vagrant/django/didgeridoo/static/
<Directory /vagrant/django/webshop/webshop>
<Directory /vagrant/django/didgeridoo/didgeridoo>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
<Directory /vagrant/django/webshop/media>
<Directory /vagrant/django/didgeridoo/media>
Require all granted
</Directory>
<Directory /vagrant/django/webshop/static>
<Directory /vagrant/django/didgeridoo/static>
Require all granted
</Directory>