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