mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-24 21:59:37 +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"
|
12
traefik/traefik.yml
Normal file
12
traefik/traefik.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
entryPoints:
|
||||
web:
|
||||
address: ":80"
|
||||
|
||||
api:
|
||||
insecure: false
|
||||
dashboard: true
|
||||
|
||||
providers:
|
||||
file:
|
||||
filename: "./traefik-dynamic.yml"
|
||||
watch: true
|
Loading…
Add table
Add a link
Reference in a new issue