Skip to content

Commit

Permalink
Fix X-Forwarded-Proto on LTC proxy with https protocol (demo)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirik committed Nov 9, 2023
1 parent eb1848d commit 7c9e7c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
1 change: 1 addition & 0 deletions deps/nginx/sample/nginx-template
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ server {
location / {
proxy_pass http://layman_client:3000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
}

}

0 comments on commit 7c9e7c4

Please sign in to comment.