# vim: syntax=apache
WSGISocketPrefix /var/run/wsgi

<VirtualHost  *:80>
    ServerName crash-stats

    DocumentRoot /data/socorro/webapp-django
    DirectoryIndex index.php index.html
    Options -Indexes

    Alias /static/ "/data/socorro/webapp-django/static/"

    WSGIDaemonProcess crashstats processes=10 threads=10 maximum-requests=100
    WSGIProcessGroup crashstats

    WSGIScriptAlias / "/data/socorro/webapp-django/wsgi/socorro-crashstats.wsgi"
</VirtualHost>

