hbnet/web/apache2_examples/hbnet_virtual_host.conf

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>