30 lines
753 B
YAML
30 lines
753 B
YAML
# Tomcat
|
|
server:
|
|
port: 9201
|
|
|
|
# Spring
|
|
spring:
|
|
application:
|
|
# 应用名称
|
|
name: ruoyi-system
|
|
profiles:
|
|
# 环境配置
|
|
active: dev
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
# 服务注册地址
|
|
server-addr: 175.178.38.240:9048
|
|
# 注册服务命名空间
|
|
namespace: 6beb5492-ecb7-431c-85b5-73c2c9d5826a
|
|
config:
|
|
# 配置中心地址
|
|
server-addr: 175.178.38.240:9048
|
|
# 注册配置命名空间
|
|
namespace: 6beb5492-ecb7-431c-85b5-73c2c9d5826a
|
|
# 配置文件格式
|
|
file-extension: yml
|
|
# 共享配置
|
|
shared-configs:
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|