启用具有IP限制的Apache代理传递的URL

时间:2018-09-03 15:24:04

标签: apache proxypass

我已通过代理将Java应用程序部署在apache服务器中。

我希望启用该代理仅将url传递给特定IP。

我在vhost配置中遵循了以下代码。

RewriteCond %{REMOTE_ADDR} =123.123.123.123
RewriteRule ^/internal(.*) https://abc.xyz.com/private

ProxyPass /private http://localhost:8111/private connectiontimeout=300 timeout=1800
ProxyPassReverse /private http://localhost:8111/private

它一直在重定向..(ERR_redirecting_too_many_times)

有人可以帮忙吗..

0 个答案:

没有答案