Apache ProxyPass ignore static files
You need to use the ProxyPass ! argument with a path, not in a <Location>
block, for example:
ProxyPass /static !
ProxyPass / http://localhost:8081/
ProxyPassReverse / http://localhost:8081/
I believe these rules are processed in the order they appear in the config, so be sure to specify exclude rules first.