diff --git a/ConfigBasic.js b/ConfigBasic.js index ee647ad..82b1ece 100644 --- a/ConfigBasic.js +++ b/ConfigBasic.js @@ -5,10 +5,10 @@ module.exports={ production: { protocol: 'httpall', - host: 'vic-app.bittic.org', + host: 'vic-user.bittic.org', // 如果使用 https 协议,必须填写以下内容,或在命令行参数中设置: sslType: 'file', // greenlock or file - sslDomainList: ['vic-app.bittic.org'], + sslDomainList: ['vic-user.bittic.org'], sslKey: '/etc/letsencrypt/live/vic-server.bittic.org/privkey.pem', // ssl key file, sslCert: '/etc/letsencrypt/live/vic-server.bittic.org/fullchain.pem', // ssl cert file, sslCA: '/etc/letsencrypt/live/vic-server.bittic.org/bundle.pem', // ssl ca file, diff --git a/ConfigDeploy.js b/ConfigDeploy.js index aefdaf1..4bcda09 100644 --- a/ConfigDeploy.js +++ b/ConfigDeploy.js @@ -4,15 +4,15 @@ module.exports = { gotoTarget: "github", github: { targetType: "git", - repo: "https://github.com/tuc-vic/vic-app.bittic.org", + repo: "https://github.com/tuc-vic/vic-user.bittic.org", branch: "main", gitname: "vic-team", gitemail: "vic-team@outlook.com", - url: 'http://vic-app.bittic.org' + url: 'http://vic-user.bittic.org' }, vultr: { targetType: "ssh", - host: "vic-app.bittic.org", + host: "vic-user.bittic.org", targetPath: "/faronear/tuc-vic/vic.user.react", targetDir: "dist", user: "adot", @@ -21,8 +21,8 @@ module.exports = { }, unicloud: { targetType: "serverless", - space: "cn-bittic-vic-app", - url: "http://vic-app.bittic.cn", + space: "cn-bittic-vic-user", + url: "http://vic-user.bittic.cn", }, }, }; diff --git a/public/CNAME b/public/CNAME index 8302d3f..7074814 100644 --- a/public/CNAME +++ b/public/CNAME @@ -1 +1 @@ -vic-app.bittic.org \ No newline at end of file +vic-user.bittic.org \ No newline at end of file diff --git a/src/config.ts b/src/config.ts index bbcadf0..bc2575b 100644 --- a/src/config.ts +++ b/src/config.ts @@ -10,8 +10,8 @@ export default { baseURL: 'https://vic-server.bittic.org/v1', // baseURL: 'http://yapi.faronear.org/mock/20/v1', linkAndroid: 'https://vic.bittic.org/downloads/vic.apk', - linkIOS: 'https://vic-app.bittic.org', - linkWeb: 'https://vic-app.bittic.org', + linkIOS: 'https://vic-user.bittic.org', + linkWeb: 'https://vic-user.bittic.org', linkTelegram: 'https://t.me/vichome', linkWechat: 'https://weixin.qq.com/g/AT997GKdoc9WnieL', linkEmail: 'team-vic@outlook.com', diff --git a/src/pages/invite/service.ts b/src/pages/invite/service.ts index 65ea963..fd7a8bb 100644 --- a/src/pages/invite/service.ts +++ b/src/pages/invite/service.ts @@ -14,5 +14,5 @@ export function generateInviteHref(invite: string): string { if (isLocalhost) { return `${window.location.origin}${postfix}` } - return `https://vic-app.bittic.org/#${postfix}`; + return `https://vic-user.bittic.org/#${postfix}`; }