12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- spring:
- redis:
- host: 172.192.10.105
- port: 30013
- password:
- cloud:
- gateway:
- discovery:
- locator:
- lowerCaseServiceId: true
- enabled: true
- routes:
- # 认证中心
- - id: ruoyi-auth
- uri: lb://ruoyi-auth
- predicates:
- - Path=/auth/**
- filters:
- # 验证码处理
- - CacheRequestFilter
- - ValidateCodeFilter
- - StripPrefix=1
- # 系统模块
- - id: ruoyi-system
- uri: lb://ruoyi-system
- predicates:
- - Path=/system/**
- filters:
- - StripPrefix=1
- # 能源管理
- - id: ems-server
- uri: http://127.0.0.1:9202
- predicates:
- - Path=/ems/**
- filters:
- - StripPrefix=0
- # 能源-设备适配器
- - id: ems-dev-adapter
- uri: http://127.0.0.1:9203
- predicates:
- - Path=/ems-dev-adapter/**
- filters:
- - StripPrefix=0
- # 定时任务
- - id: ruoyi-job
- uri: lb://ruoyi-job
- predicates:
- - Path=/schedule/**
- filters:
- - StripPrefix=1
- # 代码生成
- - id: ruoyi-gen
- uri: lb://ruoyi-gen
- predicates:
- - Path=/code/**
- filters:
- - StripPrefix=1
- # 安全配置
- security:
- # 验证码
- captcha:
- enabled: true
- type: math
- # 防止XSS攻击
- xss:
- enabled: true
- excludeUrls:
- - /system/notice
- # 不校验白名单
- ignore:
- whites:
- - /auth/logout
- - /auth/login
- - /auth/register
- - /*/v2/api-docs
- - /csrf
|