49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
#运行环境
|
||
NODE_ENV = 'development'
|
||
|
||
# 工程名
|
||
VUE_APP_NAME = 'interface'
|
||
# 公共资源路径
|
||
VUE_APP_PUBLIC_PATH = '/interface/'
|
||
#api接口域名
|
||
VUE_APP_HOST = 'http://localhost:7055/'
|
||
# index页面
|
||
VUE_APP_HOST_INDEX = 'http://localhost:7070/interface/'
|
||
# y9home接口
|
||
VUE_APP_CONTEXT = 'http://localhost:7055/interfacePlatform/'
|
||
# 执行转发节点入口接口
|
||
VUE_APP_NODE_CONTEXT = 'http://localhost:7055/interfacePlatform/'
|
||
# kernel-log接口
|
||
VUE_APP_LOG_URL = 'https://test.youshengyun.com/log/'
|
||
# sso接口
|
||
VUE_APP_SSO_DOMAINURL = 'https://test.youshengyun.com/'
|
||
# sso接口上下文
|
||
VUE_APP_SSO_CONTEXT = 'sso'
|
||
# sso授权码接口
|
||
VUE_APP_SSO_AUTHORIZE_URL = 'https://test.youshengyun.com/sso/oauth2.0/authorize'
|
||
# 退出URL
|
||
VUE_APP_SSO_LOGOUT_URL = 'https://test.youshengyun.com/sso/logout?service=http://localhost:7070/'
|
||
# sso接口的固定字段
|
||
VUE_APP_SSO_CLIENT_ID = 'clientid'
|
||
# sso接口的固定字段
|
||
VUE_APP_SSO_SECRET = 'secret'
|
||
# sso接口的固定字段
|
||
VUE_APP_SSO_GRANT_TYPE = 'authorization_code'
|
||
# sso-redisKey
|
||
VUE_APP_REDISKEY = 'userKey'
|
||
# sso-sessionStorage_guid
|
||
VUE_APP_SESSIONSTORAGE_GUID = 'guid'
|
||
# sso-token_key
|
||
VUE_APP_SSO_SITETOKEN_KEY = 'y9AT'
|
||
# sso-redisServerUrl
|
||
#VUE_APP_SERVER_REDIS = 'http://localhost:6379/'
|
||
|
||
# 跨域携带cookie
|
||
VUE_APP_CREDENTIALS = true
|
||
# 记住我时间 单位:天
|
||
VUE_APP_REMEMBER_TIME = 30
|
||
# appFeatures
|
||
#VUE_APP_APPFEATURES = '1'
|
||
|
||
|