pull/744/merge
Merlin Dienst 2024-06-14 10:00:41 +00:00 committed by GitHub
commit 5494069684
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 7 deletions

View File

@ -107,6 +107,7 @@ services:
- PROXY_HTTPS_PROTOCOLS=${HTTPS_PROTOCOLS:-}
- PROXY_HTTPS_CIPHERS=${HTTPS_CIPHERS:-}
- PROXY_HTTPS_HSTS=${HTTPS_HSTS:-}
- XFRAME_SAMEORIGIN=${XFRAME_SAMEORIGIN:-}
- ALLOWED_ACCESS_TO_DASHBOARD=${ALLOWED_ACCESS_TO_DASHBOARD:-}
- ALLOWED_ACCESS_TO_RESTAPI=${ALLOWED_ACCESS_TO_RESTAPI:-}
- PROXY_MODE=CE

View File

@ -1,5 +1,3 @@
{xframe_options}
{app_upstream}
upstream openviduserver {
@ -36,6 +34,8 @@ server {
{ssl_config}
{proxy_config}
{xframe_options}
{app_config}

View File

@ -1,8 +1,3 @@
{xframe_options}
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
{app_upstream}
upstream kibana {
@ -62,6 +57,11 @@ server {
{proxy_config}
{app_config}
{xframe_options}
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
########################
# OpenVidu Locations #