Jenkins 在 IBM HTTP Webserver 后面运行,负载平衡正在尝试监视 Webserver 的错误代码以检查 Webserver 是否已启动。
因为在 Jenkins 上启用了安全性,所以GET/
来自负载均衡器的调用正在返回,如果到达页面403 Forbidden
,有没有办法可以重定向或打印“ ”,而不是返回“403”?200 OK
还尝试在 httpd 文件中使用重写引擎
<VirtualHost *:80>
ProxyPass / http://AppServer:8080/
ProxyPassReverse / http://AppServer:8080/
ProxyRequests Off
AllowEncodedSlashes NoDecode
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^curl/*
RewriteRule ^/index.php$
</VirtualHost>
还是不行。我确定,我在 httpd 文件中的配置不正确,有什么建议吗?index.php 放在 HTTP 服务器的 bin 目录下。