mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
25 lines
606 B
YAML
25 lines
606 B
YAML
http:
|
|
routers:
|
|
dashboard:
|
|
rule: Host(`traefik.test.local`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`))
|
|
service: api@internal
|
|
anix-api:
|
|
entryPoints:
|
|
- web
|
|
rule: Host(`anix.test.local`) && PathPrefix(`/api`)
|
|
service: anix-api-svc
|
|
anix-front:
|
|
entryPoints:
|
|
- web
|
|
rule: Host(`anix.test.local`)
|
|
service: anix-front-svc
|
|
|
|
services:
|
|
anix-api-svc:
|
|
loadBalancer:
|
|
servers:
|
|
- url: "http://127.0.0.1:8000"
|
|
anix-front-svc:
|
|
loadBalancer:
|
|
servers:
|
|
- url: "http://127.0.0.1:3000"
|