mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-06-26 06:51:49 +02:00
greenlight: avoid leaking IP to greenlight, which stores it in the logs
This commit is contained in:
parent
1fbf11a9fa
commit
859e61af06
@ -41,7 +41,7 @@ server {
|
|||||||
location / {
|
location / {
|
||||||
proxy_pass http://greenlight:3000;
|
proxy_pass http://greenlight:3000;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For "127.0.0.1";
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
proxy_set_header X-Forwarded-Ssl on;
|
proxy_set_header X-Forwarded-Ssl on;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
@ -51,7 +51,7 @@ server {
|
|||||||
location /cable {
|
location /cable {
|
||||||
proxy_pass http://greenlight:3000;
|
proxy_pass http://greenlight:3000;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For "127.0.0.1";
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
proxy_set_header X-Forwarded-Ssl on;
|
proxy_set_header X-Forwarded-Ssl on;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user