mirror of https://github.com/kf7eel/hbnet.git
14 lines
474 B
Plaintext
14 lines
474 B
Plaintext
<virtualhost *:80>
|
|
ServerName domain.name
|
|
|
|
WSGIDaemonProcess hbnet user=hbnet_user group=hbnet_user threads=5 python-home=/opt/hbnet_venv
|
|
WSGIScriptAlias / /var/www/html/hbnet/hbnet.wsgi
|
|
|
|
<directory /var/www/html/hbnet>
|
|
WSGIProcessGroup hbnet
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIScriptReloading On
|
|
Order deny,allow
|
|
Allow from all
|
|
</directory>
|
|
</virtualhost> |