use real IPs instead of docker ones (PHP 7.4)
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 11s
Container Publish / build-image (amd64) (push) Successful in 12s
Container Publish / update docker manifest (push) Successful in 10s

This commit is contained in:
2025-07-31 17:29:31 +02:00
parent 5de2b67275
commit 0f78f4cebc

View File

@@ -89,6 +89,10 @@ http {
'' close; '' close;
} }
# use real IPs instead of docker ones
set_real_ip_from 172.18.0.0/16;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
# Specifies the main log format. # Specifies the main log format.
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' log_format main '$remote_addr - $remote_user [$time_local] "$request" '