-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from zhangbin1010/dev
[Upgrade] 更新文档
- Loading branch information
Showing
1 changed file
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
### workflow-server | ||
### admin-server | ||
监控服务,使用 Spring Boot Admin 通过 eureka 监控所有服务的健康状况 | ||
|
||
##### 一、说明 | ||
- 1、该服务不依赖任何自主开发的包,也不使用oauth2、bus、配置中心、日志服务等其他服务,网关路由不做配置,不暴露给前端 | ||
- 2、该服务有单独的安全验证,不加入到oauth2体系中,用户名和密码在[application.prod.yml](/application-prod.yml)中如下配置 | ||
```yaml | ||
eureka: | ||
instance: | ||
metadata-map: | ||
user.name: admin | ||
user.password: 888888 | ||
spring: | ||
security: | ||
user: | ||
name: admin | ||
password: 888888 | ||
cloud: | ||
nacos: | ||
discovery: | ||
ip: ${server.address} | ||
metadata: | ||
user.name: ${spring.security.user.name} | ||
user.password: ${spring.security.user.password} | ||
``` |