-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic_conf.yml
67 lines (55 loc) · 1.33 KB
/
dynamic_conf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## dynamic configuration ##
# This still under construction.
http:
middlewares:
stripprefix:
stripPrefix:
prefixes:
- "/ratel/"
stripprefix2:
stripPrefix:
prefixes:
- "/dgraph/"
grpcfix:
stripPrefix:
prefixes:
- "/grpc/"
routers:
routerGrpc:
rule: "Host(`www.local.dgraph.com`) && Path(`/grpc/`)"
service: dgraph-grpc
middlewares:
- grpcfix
ratel:
rule: "Host(`localhost`) && Path(`/ratel/`)"
service: dgraph-ratel
middlewares:
- stripprefix
dgraphHTTP:
rule: "Host(`localhost`)"
service: dgraph-HTTP
middlewares:
- stripprefix2
services:
dgraph-grpc:
loadBalancer:
servers:
- url: h2c://localhost:9081
- url: h2c://localhost:9082
- url: h2c://localhost:9083
- url: h2c://localhost:9084
- url: h2c://localhost:9085
- url: h2c://localhost:9086
dgraph-ratel:
loadBalancer:
servers:
- url: http://localhost:8000
dgraph-HTTP:
loadBalancer:
servers:
- url: http://localhost:8081
- url: http://localhost:8082
- url: http://localhost:8083
- url: http://localhost:8084
- url: http://localhost:8085
- url: http://localhost:8086