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; } }