修改template/data中的protocol,带上冒号
This commit is contained in:
parent
9cec1dadcf
commit
062e2b0f11
|
|
@ -92,7 +92,7 @@ export const system: System[] = [
|
||||||
zone: 'z0',
|
zone: 'z0',
|
||||||
name: '',
|
name: '',
|
||||||
domain: '',
|
domain: '',
|
||||||
protocol: 'http',
|
protocol: 'http:',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
defaultBucket: '',
|
defaultBucket: '',
|
||||||
|
|
@ -151,7 +151,7 @@ export const system: System[] = [
|
||||||
export const domain: Domain[] = [
|
export const domain: Domain[] = [
|
||||||
{
|
{
|
||||||
id: DEV_DOMAIN_ID,
|
id: DEV_DOMAIN_ID,
|
||||||
protocol: 'http',
|
protocol: 'http:',
|
||||||
url: 'localhost',
|
url: 'localhost',
|
||||||
port: 3001,
|
port: 3001,
|
||||||
systemId: DEV_SYSTEM_ID,
|
systemId: DEV_SYSTEM_ID,
|
||||||
|
|
@ -161,7 +161,7 @@ export const domain: Domain[] = [
|
||||||
* 线上真实域名,此信息必须在应用启动前初始化,否则系统无法访问
|
* 线上真实域名,此信息必须在应用启动前初始化,否则系统无法访问
|
||||||
* */
|
* */
|
||||||
id: SUPER_DOMAIN_ID,
|
id: SUPER_DOMAIN_ID,
|
||||||
protocol: 'https',
|
protocol: 'https:',
|
||||||
url: 'test.com',
|
url: 'test.com',
|
||||||
port: 443,
|
port: 443,
|
||||||
apiPath: '/rest/aspect',
|
apiPath: '/rest/aspect',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue