I have the URL I need to restrict access for specific IP (10.0.0.5). When I do it for direct access in the next way it works perfect:
<Location /incoming>
Order Allow,Deny
Deny from 10.0.0.5
Allow from all
</Location>
But , when this IP comes from Proxy (Proxy IP: 192.168.1.43) this solution does not work. This what I see in log:
10.0.0.5, 192.168.1.43 - - [24/May/2017:16:03:54 +0300] "POST /incoming HTTP/1.0" 200 698 0/6899 "-" "-"
I tried to do the next - add Proxy section:
<Proxy /incoming >
Order Allow,Deny
Deny from 10.0.0.5
Allow from all
</Proxy>
It does not help too.
I need your help, friends!!!