Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/ac1a3c5eb07650eb3942163ca3d8f6485a2027b5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed logging of proxied client requests while authenticating.

pull/2745/head v1.4.6-beta.14
morpheus65535 6 months ago
parent 23c19db2e2
commit ac1a3c5eb0

@ -11,7 +11,9 @@ from app.config import settings
def check_credentials(user, pw, request, log_success=True):
ip_addr = request.environ.get('HTTP_X_FORWARDED_FOR', request.remote_addr)
forwarded_for_ip_addr = request.environ.get('HTTP_X_FORWARDED_FOR')
real_ip_addr = request.environ.get('HTTP_X_REAL_IP')
ip_addr = forwarded_for_ip_addr or real_ip_addr or request.remote_addr
username = settings.auth.username
password = settings.auth.password
if hashlib.md5(f"{pw}".encode('utf-8')).hexdigest() == password and user == username:

Loading…
Cancel
Save