fix: 修正安全中心的认证注册信息的域名
author刘洪青 <hongqing.liu@supwisdom.com>
Sat, 9 Oct 2021 06:27:10 +0000 (14:27 +0800)
committer刘洪青 <hongqing.liu@supwisdom.com>
Sat, 9 Oct 2021 06:27:10 +0000 (14:27 +0800)
deploy-manifests/charts/1.2.0001.认证授权-认证对接数据初始化(安全中心).md

index 7d9f486..02ae0d9 100644 (file)
@@ -34,9 +34,9 @@ use cas_server;
 update TB_SERVICE 
 set 
   DELETED=1,
-  INFORMATION_URL='http://personal-security-center.paas.example.com/personal', 
-  LOGOUT_URL='http://personal-security-center.paas.example.com/personal/slo?redirect_uri=http://security-center.paas.example.com/?clearCertification=clearCertification',
-  SERVICE_ID='http://personal-security-center.paas.example.com/personal/cas/(.*)'
+  INFORMATION_URL='http://authx-service.paas.example.com/personal', 
+  LOGOUT_URL='http://authx-service.paas.example.com/personal/slo?redirect_uri=http://authx-service.paas.example.com/?clearCertification=clearCertification',
+  SERVICE_ID='http://authx-service.paas.example.com/personal/cas/(.*)'
 where ID='2';  -- todo, modify
 
 
@@ -48,9 +48,9 @@ INSERT INTO `TB_SERVICE` (`ID`, `COMPANY_ID`, `DELETED`, `ADD_ACCOUNT`, `ADD_TIM
   `ENABLED`, `SSO_ENABLED`, `REQUIRE_ALL_ATTRIBUTES`, 
   `APPLICATION_ID`, `EXTERNAL_ID`)
 VALUES ('22', '1', 0, 'admin', '2020-07-01 00:00:00',
-  '安全中心', '安全中心', 'https://security-center.paas.example.com', 'https://security-center.paas.example.com/?clearCertification=clearCertification', 
+  '安全中心', '安全中心', 'https://authx-service.paas.example.com', 'https://authx-service.paas.example.com/?clearCertification=clearCertification', 
   'REDIRECT', 'FRONT_CHANNEL', 
-  22, '安全中心', 22, 'https://security-center.paas.example.com/(.*)', 
+  22, '安全中心', 22, 'https://authx-service.paas.example.com/(.*)', 
   1, 1, 1, 
   '22', '22');
 
@@ -59,12 +59,12 @@ commit;
 -- 修改根域名
 update TB_SERVICE 
 set 
-  INFORMATION_URL='http://security-center.paas.example.com', 
-  LOGOUT_URL='http://security-center.paas.example.com/?clearCertification=clearCertification', 
-  SERVICE_ID='http://security-center.paas.example.com/(.*)', 
+  INFORMATION_URL='http://authx-service.paas.example.com', 
+  LOGOUT_URL='http://authx-service.paas.example.com/?clearCertification=clearCertification', 
+  SERVICE_ID='http://authx-service.paas.example.com/(.*)', 
   ID_TOKEN_ENABLED=1,
   JWT_AS_SERVICE_TICKET=1,
-  APPLICATION_DOMAIN='security-center.paas.example.com'
+  APPLICATION_DOMAIN='authx-service.paas.example.com'
 where ID='22';  -- todo, modify
 
 commit;