vxcage
vxcage copied to clipboard
Update page to include Apache 2.4 Example
<VirtualHost *:80>
ServerName localhost
WSGIDaemonProcess localhost user=www-data group=www-data processes=1 threads=5
WSGIScriptAlias / /opt/vxcage/app.wsgi
<Directory /opt/vxcage>
WSGIProcessGroup localhost
WSGIApplicationGroup %{GLOBAL}
<Files app.wsgi>
Require all granted
</Files>
</Directory>
ErrorLog /opt/vxcage/error.log
LogLevel debug
CustomLog /opt/vxcage/access.log combined
ServerSignature Off
</VirtualHost>