1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

[bug] default nginx configuration does not allows secure cookies

This commit is contained in:
Sylvain 2020-04-07 12:26:14 +02:00
parent fb2801d9a3
commit c6c25f0595
3 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
- Updated documentation
- Fix a bug: installation without nginx does not remove the service from the docker-compose file
- Fix a bug: default twitter feed is invalid
- Fix a bug: default nginx configuration does not allows secure cookies
## v4.3.3 2020 April 1st

View File

@ -17,6 +17,7 @@ server {
location @puma {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_pass http://puma;
}

View File

@ -45,6 +45,7 @@ server {
location @puma {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_pass http://puma;
}