added (example) activate_this.py

This commit is contained in:
Tobias Kurze
2019-04-15 16:12:35 +02:00
parent dceefb0d69
commit 7f545e25f6
3 changed files with 43 additions and 9 deletions

View File

@@ -7,15 +7,15 @@
```xml
<VirtualHost *:80>
ServerName vue-test
ServerAlias vue-test.local
ServerName lrc
ServerAlias lrc.local
ServerAdmin kurze@kit.edu
ErrorLog "/var/log/httpd/vue-test.local-error_log"
CustomLog "/var/log/httpd/vue-test.local-access_log" common
ErrorLog "/var/log/httpd/lrc.local-error_log"
CustomLog "/var/log/httpd/lrc.local-access_log" common
DocumentRoot /srv/http/vue_test/
WSGIScriptAlias / /srv/http/vue_test/app.wsgi
<Directory "/srv/http/vue_test/">
DocumentRoot /srv/http/lrc/
WSGIScriptAlias / /srv/http/lrc/app.wsgi
<Directory "/srv/http/lrc/">
Allow from all
</Directory>
</VirtualHost>