Skip to content

Commit

Permalink
Merge pull request #100 from zhangbin1010/dev
Browse files Browse the repository at this point in the history
[Upgrade] 更新文档
  • Loading branch information
zhangbinhub authored Oct 10, 2019
2 parents 5faf569 + 687b30d commit 6a56b6a
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions common/admin-server/README.md
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}
```

0 comments on commit 6a56b6a

Please sign in to comment.