Your ProxyPass /static/ !
must come before the ProxyPass /
rule so Apache serves static files itself instead of forwarding them to Gunicorn. Also, make sure your Alias /static/
points to the correct static files directory and that Apache has permission to read them. The MIME error happens because Gunicorn returns an HTML 404 page instead of the CSS file when static requests get proxied to it.