vxcage icon indicating copy to clipboard operation
vxcage copied to clipboard

Update page to include Apache 2.4 Example

Open shadowbq opened this issue 10 years ago • 0 comments

<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>

shadowbq avatar Jul 31 '14 21:07 shadowbq