0

AWS ELB の前にワニスと apache があり、https リダイレクトごとに apache ログに「無限ループ」エラーが表示されます -

[Sun Nov 10 03:06:36 2013] [error] [client 127.0.0.1] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.*******.com/login?service=https%3A%2F%2Fwww.anaplan.com%
4

1 に答える 1

0

修正するには、ワニス構成にこれを追加する必要がありました-

sub vcl_hash {
hash_data(req.url);
hash_data(req.http.X-Forwarded-Proto);
return(hash);
}

乾杯、

Reigner S. Yrastorza

于 2013-11-10T06:07:11.193 に答える