how can I force ProxyPass / ProxyPassReverse NOT to pass a request if the client provides a certain port?
The following passes EVERY request made to the machine correctly:
<VirtualHost _default_:443>
SSLProxyEngine on
ProxyPass / http://a.b.c.d:9000/
ProxyPassReverse / http://a.b.c.d:9000/
Now I do not want to pass requests coming in for port 8080:
http://a.b.c.d:8080 should not be passed.
Is this possible?