De: link
Algo como isso deve acontecer:
DocumentRoot /path/to/files/
<Directory /path/to/files/>
Options All
AllowOverride All
Require all granted
</Directory>
ProxyPass /static !
ProxyPass "/" http://127.0.0.1:8180/
ProxyPassReverse "/" http://127.0.0.1:8180/
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
Isso deve atender todos os arquivos em /path/to/files/static
localmente, em vez de fazer proxy deles.