From ec6d3d35c2d2c4d99cc22e456b41f29025f982dc Mon Sep 17 00:00:00 2001 From: genteure Date: Sat, 16 Mar 2024 12:25:15 +0800 Subject: [PATCH] fix(web): update description for open access error. --- BililiveRecorder.Web/OpenAccessWarningMiddleware.cs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/BililiveRecorder.Web/OpenAccessWarningMiddleware.cs b/BililiveRecorder.Web/OpenAccessWarningMiddleware.cs index 200343a..9aa30ca 100644 --- a/BililiveRecorder.Web/OpenAccessWarningMiddleware.cs +++ b/BililiveRecorder.Web/OpenAccessWarningMiddleware.cs @@ -34,17 +34,20 @@ namespace BililiveRecorder.Web { context.Response.ContentType = "text/html; charset=utf-8"; return context.Response.WriteAsync("Access Denied" + - "

Access Denied

Open access from the internet detected. Please enable basic authentication " + + "

Access Denied

Open access from the internet detected. Please enable basic authentication by setting the environment variables \"BREC_HTTP_BASIC_USER\" and \"BREC_HTTP_BASIC_PASS\", " + "or disable this warning by setting the environment variable \"BREC_HTTP_OPEN_ACCESS\".

" + - "

检测到非局域网无密码访问。请设置用户名密码或通过设置环境变量 \"BREC_HTTP_OPEN_ACCESS\" 禁用此警告。

" + + "

检测到非局域网无密码访问。请设置使用环境变量 \"BREC_HTTP_BASIC_USER\" 和 \"BREC_HTTP_BASIC_PASS\" 设置用户名密码," + + "或如果你已经通过其他方法实现了访问控制(如只在内网开放)可以通过设置环境变量 \"BREC_HTTP_OPEN_ACCESS\" 为任意值来禁用此警告。暴露在互联网上无密码的录播姬存在安全风险。

" + "

录播姬 BililiveRecorder " + GitVersionInformation.FullSemVer + "

\n"); } else { context.Response.ContentType = "text/plain; charset=utf-8"; return context.Response.WriteAsync("Access Denied.\nOpen access from the internet detected. Please enable " + - "basic authentication or disable this warning by setting the environment variable \"BREC_HTTP_OPEN_ACCESS\".\n" + - "检测到非局域网无密码访问。请设置用户名密码或通过设置环境变量 \"BREC_HTTP_OPEN_ACCESS\" 禁用此警告。\n" + + "basic authentication by setting the environment variables \"BREC_HTTP_BASIC_USER\" and \"BREC_HTTP_BASIC_PASS\", " + + "or disable this warning by setting the environment variable \"BREC_HTTP_OPEN_ACCESS\".\n" + + "检测到非局域网无密码访问。请设置使用环境变量 \"BREC_HTTP_BASIC_USER\" 和 \"BREC_HTTP_BASIC_PASS\" 设置用户名密码," + + "或如果你已经通过其他方法实现了访问控制(如只在内网开放)可以通过设置环境变量 \"BREC_HTTP_OPEN_ACCESS\" 为任意值来禁用此警告。暴露在互联网上无密码的录播姬存在安全风险。\n" + "录播姬 BililiveRecorder " + GitVersionInformation.FullSemVer + "\n"); } }