diff --git a/apps/server/src/assets/config-sample.ini b/apps/server/src/assets/config-sample.ini
index f89790163..41eb3d2b6 100644
--- a/apps/server/src/assets/config-sample.ini
+++ b/apps/server/src/assets/config-sample.ini
@@ -55,3 +55,15 @@ oauthClientId=
# Set the client secret for OAuth/OpenID authentication
# This is the secret of the client that will be used to verify the user's identity
oauthClientSecret=
+
+# Set the issuer base URL for OAuth/OpenID authentication
+# This is the base URL of the service that will be used to verify the user's identity
+oauthIssuerBaseUrl=
+
+# Set the issuer name for OAuth/OpenID authentication
+# This is the name of the service that will be used to verify the user's identity
+oauthIssuerName=
+
+# Set the issuer icon for OAuth/OpenID authentication
+# This is the icon of the service that will be used to verify the user's identity
+oauthIssuerIcon=
diff --git a/apps/server/src/assets/translations/cn/server.json b/apps/server/src/assets/translations/cn/server.json
index 8af485c5d..4daf1d49b 100644
--- a/apps/server/src/assets/translations/cn/server.json
+++ b/apps/server/src/assets/translations/cn/server.json
@@ -103,7 +103,7 @@
"password": "密码",
"remember-me": "记住我",
"button": "登录",
- "sign_in_with_google": "使用 Google 登录"
+ "sign_in_with_sso": "使用 {{ ssoIssuerName }} 登录"
},
"set_password": {
"title": "设置密码",
diff --git a/apps/server/src/assets/translations/en/server.json b/apps/server/src/assets/translations/en/server.json
index 33147a8d2..ffa7a0eb3 100644
--- a/apps/server/src/assets/translations/en/server.json
+++ b/apps/server/src/assets/translations/en/server.json
@@ -112,7 +112,7 @@
"password": "Password",
"remember-me": "Remember me",
"button": "Login",
- "sign_in_with_google": "Sign in with Google"
+ "sign_in_with_sso": "Sign in with {{ ssoIssuerName }}"
},
"set_password": {
"title": "Set Password",
diff --git a/apps/server/src/assets/views/login.ejs b/apps/server/src/assets/views/login.ejs
index 1daf91a3d..4cd3c6a00 100644
--- a/apps/server/src/assets/views/login.ejs
+++ b/apps/server/src/assets/views/login.ejs
@@ -26,8 +26,8 @@
<% if (ssoEnabled) { %>
-
- <%= t("login.sign_in_with_google") %>
+
+ <%= t("login.sign_in_with_sso", { ssoIssuerName: ssoIssuerName }) %>
<% } else { %>