ServerName www.example.com
    ServerAlias example.com
    ServerAdmin webmaster@example.com
    DocumentRoot /path/to/example-site/app/app/web/static
    Alias /robots.txt /path/to/example-site/app/app/web/static/robots.txt
    Alias /favicon.ico /path/to/example-site/app/app/web/static/favicon.ico
    Alias /uploads/ /path/to/example-site/app/app/web/static/uploads/
    
        
            Order allow,deny
            Allow from all
        
        = 2.4>
            Require all granted
        
    
    WSGIDaemonProcess example.com processes=2 threads=15 display-name=%{GROUP} python-home=/path/to/example-site/venv python-path=/path/to/example-site/app
    WSGIProcessGroup example.com
    WSGIScriptAlias / /path/to/example-site/app/app/wsgi.py process-group=example.com
    WSGIPassAuthorization On
    
        
            
                Order allow,deny
                Allow from all
            
            = 2.4>
                Require all granted