Closed as not planned
Description
you can fix this issue by adding this in .conf that you can found in this path "/data/nginx/proxy_host"
proxy_set_header Authorization $http_authorization;
location / {
# Authorization
auth_basic "Authorization required";
proxy_set_header Authorization $http_authorization;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
# Proxy!
include conf.d/include/proxy.conf;
}
Originally posted by @rahul1996pp in #3124 (comment)