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:
parent
fb2801d9a3
commit
c6c25f0595
@ -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
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user