24 lines
499 B
Markdown
24 lines
499 B
Markdown
|
|
# Vue-Flask wsgi boilerplate template
|
|
|
|
|
|
|
|
## Example Virtual Host Config for WSGI
|
|
|
|
```xml
|
|
<VirtualHost *:80>
|
|
ServerName vue-test
|
|
ServerAlias vue-test.local
|
|
ServerAdmin kurze@kit.edu
|
|
ErrorLog "/var/log/httpd/vue-test.local-error_log"
|
|
CustomLog "/var/log/httpd/vue-test.local-access_log" common
|
|
|
|
DocumentRoot /srv/http/vue_test/
|
|
WSGIScriptAlias / /srv/http/vue_test/app.wsgi
|
|
<Directory "/srv/http/vue_test/">
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|
|
```
|
|
|