| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 
							- # Tomcat
 
- server:
 
-   port: 8080
 
- # Spring
 
- spring: 
 
-   application:
 
-     # 应用名称
 
-     name: soc-gateway
 
-   profiles:
 
-     # 环境配置
 
-     active: dev
 
-   cloud:
 
-     nacos:
 
-       discovery:
 
-         # 服务注册地址
 
-         server-addr: 10.87.10.54:8848
 
-         namespace: 13d6af5d-c288-40d6-b1ee-4fc370665aba
 
-       config:
 
-         # 配置中心地址
 
-         server-addr: 10.87.10.54:8848
 
-         # 配置文件格式
 
-         file-extension: yml
 
-         # 共享配置
 
-         shared-configs:
 
-           - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
 
-         namespace: 13d6af5d-c288-40d6-b1ee-4fc370665aba
 
-     sentinel:
 
-       #取消控制台懒加载
 
-       eager: true
 
-       transport:
 
-         dashboard: 10.87.10.54:8088
 
-       datasource:
 
-         ds1:
 
-           nacos:
 
-             server-addr: 10.87.10.54:8848
 
-             dataId: sentinel-soc-gateway
 
-             groupId: DEFAULT_GROUP
 
-             data-type: json
 
-             rule-type: gw-flow
 
- logging:
 
-   file:
 
-     name: logs/${spring.application.name}/info.log
 
 
  |