Currently I have an application that is running on 8080 front-ended by mod_proxy.
<Location /hudson>
Order allow,deny
Allow from all
ProxyPass http://localhost:8080/hudson
ProxyPassReverse http://localhost:8080/hudson
</Location>
I need to block TCP 8080 but not for the localhost how can this be done with IPtables?
This would work:
You could try the following:
If you wanted to allow also 1 (or more) external/other IP you can use this:
Let me know how it goes :)
Another approach: in server listening 8080, bind only to localhost: For apache it looks like following: