simplesaml virtualhost: set the real client ip address when behind a load balancer.

This commit is contained in:
Andrea Dell'Amico 2019-10-31 11:18:21 +01:00
parent e62d8b3ae6
commit 07e7139b79
1 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,14 @@ server {
include /etc/nginx/snippets/nginx-server-ssl.conf;
server_tokens off;
{% if haproxy_ips is defined %}
# We are behind haproxy
{% for ip in haproxy_ips %}
set_real_ip_from {{ ip }};
{% endfor %}
real_ip_header X-Forwarded-For;
{% endif %}
# Add headers to serve security related headers
# Before enabling Strict-Transport-Security headers please read into this
# topic first.