# Tomcat
server:
port: 8080
# Spring
spring:
application:
# 应用名称
name: test-gateway
profiles:
# 环境配置
active: dev
cloud:
nacos:
discovery:
# 服务注册地址
server-addr: 127.0.0.1:8848
gateway:
routes:
# 系统模块
- id: test-system
uri: lb://test-system
predicates:
- Path=/system/**
filters:
- StripPrefix=1