mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-06 04:49:40 +05:00
ADD New Pre-Commit hooks and Formatting code
This commit is contained in:
parent
5c9c3e67fa
commit
9e75a0783c
26 changed files with 4163 additions and 105 deletions
25
traefik/traefik-dynamic.yml
Normal file
25
traefik/traefik-dynamic.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
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"
|
Loading…
Add table
Add a link
Reference in a new issue