added app.wsgi (wsgi support) and README.md
This commit is contained in:
23
README.md
Normal file
23
README.md
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
# 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>
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user