文档新增安装步骤

This commit is contained in:
xiongxiaoyang
2020-05-29 19:28:58 +08:00
parent d255363563
commit 622f7b6d80
21 changed files with 112 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -17,12 +17,36 @@ spring:
namespace: 3960c71a-62ac-4b8f-8c30-bba8e8143a0c
gateway:
routes:
- id: home-route
uri: lb://novel-home
predicates:
- Path=/api/home/**
filters:
- RewritePath=/api/(?<segment>.*), /$\{segment}
- id: news-route
uri: lb://news-service
predicates:
- Path=/api/news/**
filters:
- RewritePath=/api/(?<segment>.*), /$\{segment}
- id: user-route
uri: lb://user-service
predicates:
- Path=/api/user/**
filters:
- RewritePath=/api/(?<segment>.*), /$\{segment}
- id: book-route
uri: lb://book-service
predicates:
- Path=/api/book/**
filters:
- RewritePath=/api/(?<segment>.*), /$\{segment}
- id: search-route
uri: lb://novel-search
predicates:
- Path=/api/search/**
filters:
- RewritePath=/api/(?<segment>.*), /$\{segment}
- id: monitor-route
uri: lb://novel-monitor
predicates: