Commit 123fec7187efef9ca7b76290d57332cb863009e2
1 parent
ea82ef26
添加admin前端配置文件
Showing
1 changed file
with
66 additions
and
0 deletions
admin-ui.yml
0 → 100644
| 1 | +server: | |
| 2 | + port: 17100 | |
| 3 | + | |
| 4 | +spring: | |
| 5 | + profiles: development | |
| 6 | + cloud: | |
| 7 | + config: | |
| 8 | + discovery: | |
| 9 | + enabled: true | |
| 10 | + thymeleaf: | |
| 11 | + prefix: classpath:/templates/ | |
| 12 | + suffix: .html | |
| 13 | + mode: HTML5 | |
| 14 | + encoding: UTF-8 | |
| 15 | + content-type: text/html | |
| 16 | + cache: false | |
| 17 | + | |
| 18 | +endpoints: | |
| 19 | + restart: | |
| 20 | + enabled: true | |
| 21 | + shutdown: | |
| 22 | + enabled: true | |
| 23 | + health: | |
| 24 | + sensitive: false | |
| 25 | + | |
| 26 | +eureka: | |
| 27 | + instance: | |
| 28 | + hostname: admin-ui | |
| 29 | + client: | |
| 30 | + registerWithEureka: true | |
| 31 | + fetchRegistry: false | |
| 32 | + serviceUrl: | |
| 33 | + defaultZone: http://discovery:15200/eureka/ | |
| 34 | + | |
| 35 | +--- | |
| 36 | + | |
| 37 | +spring: | |
| 38 | + profiles: production | |
| 39 | + cloud: | |
| 40 | + config: | |
| 41 | + discovery: | |
| 42 | + enabled: true | |
| 43 | + thymeleaf: | |
| 44 | + prefix: classpath:/templates/ | |
| 45 | + suffix: .html | |
| 46 | + mode: HTML5 | |
| 47 | + encoding: UTF-8 | |
| 48 | + content-type: text/html | |
| 49 | + cache: false | |
| 50 | + | |
| 51 | +endpoints: | |
| 52 | + restart: | |
| 53 | + enabled: true | |
| 54 | + shutdown: | |
| 55 | + enabled: true | |
| 56 | + health: | |
| 57 | + sensitive: false | |
| 58 | + | |
| 59 | +eureka: | |
| 60 | + instance: | |
| 61 | + hostname: admin-ui | |
| 62 | + client: | |
| 63 | + registerWithEureka: true | |
| 64 | + fetchRegistry: false | |
| 65 | + serviceUrl: | |
| 66 | + defaultZone: http://discovery:15200/eureka/ | |
| 0 | 67 | \ No newline at end of file | ... | ... |