Merge pull request #25605 from nextcloud/trusted-proxy-warning-localhost

dont show trusted proxy warning when the proxy and remote are both localhost
This commit is contained in:
Roeland Jago Douma 2021-04-01 13:27:26 +02:00 committed by GitHub
commit bd2e6309b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ class CheckSetupController extends Controller {
return false;
}
if (\is_array($trustedProxies) && \in_array($remoteAddress, $trustedProxies, true)) {
if (\is_array($trustedProxies) && \in_array($remoteAddress, $trustedProxies, true) && $remoteAddress !== '127.0.0.1') {
return $remoteAddress !== $this->request->getRemoteAddress();
}