30 lines
644 B
YAML
30 lines
644 B
YAML
# Tomcat
|
|
server:
|
|
port: 9200
|
|
|
|
# Spring
|
|
spring:
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
application:
|
|
# 应用名称
|
|
name: couplet-auth
|
|
profiles:
|
|
# 环境配置
|
|
active: dev
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
# 服务注册地址
|
|
server-addr: 121.89.211.230:8848
|
|
namespace: 172469
|
|
config:
|
|
# 配置中心地址
|
|
server-addr: 121.89.211.230:8848
|
|
namespace: 172469
|
|
# 配置文件格式
|
|
file-extension: yml
|
|
# 共享配置
|
|
shared-configs:
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|