From 7c9e7c4f16f51200bd31b2940c5e3ad3bdbeeee5 Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Thu, 9 Nov 2023 13:01:44 +0100 Subject: [PATCH] Fix `X-Forwarded-Proto` on LTC proxy with https protocol (demo) --- CHANGELOG.md | 1 + deps/nginx/sample/nginx-template | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c1f569f..92077f2d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## v1.22.2 {release-date} ### Changes +- [#958](https://github.com/LayerManager/layman/issues/958) Fix `X-Forwarded-Proto` on LTC proxy with https protocol in demo environment. - [#956](https://github.com/LayerManager/layman/issues/956) Fix login to GeoServer with https protocol. - [#952](https://github.com/LayerManager/layman/issues/952) Fix patch saving publication files before access right validation. diff --git a/deps/nginx/sample/nginx-template b/deps/nginx/sample/nginx-template index 3f0c1855b..7216ccbc7 100644 --- a/deps/nginx/sample/nginx-template +++ b/deps/nginx/sample/nginx-template @@ -72,6 +72,7 @@ server { location / { proxy_pass http://layman_client:3000/; proxy_set_header Host $host; + proxy_set_header X-Forwarded-Proto $scheme; } }