Skip to content

Commit

Permalink
add devcontainer rules
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Oct 27, 2023
1 parent 1b6f157 commit b8da1ba
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions util/traefik/rules_devcontainer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
http:
routers:
api:
rule: "Host(`api.klicker.com`)"
entrypoints:
- "web"
service: "api"

pwa:
rule: "Host(`pwa.klicker.com`)"
entrypoints:
- "web"
service: "pwa"

manage:
rule: "Host(`manage.klicker.com`)"
entrypoints:
- "web"
service: "manage"

control:
rule: "Host(`control.klicker.com`)"
entrypoints:
- "web"
service: "control"

auth:
rule: "Host(`auth.klicker.com`)"
entrypoints:
- "web"
service: "auth"

func-responses:
rule: "Host(`func-responses.klicker.com`)"
entrypoints:
- "web"
service: "func-responses"

func-response-processor:
rule: "Host(`func-response-processor.klicker.com`)"
entrypoints:
- "web"
service: "func-response-processor"

services:
api:
loadBalancer:
servers:
- url: "http://localhost:3000"

pwa:
loadBalancer:
servers:
- url: "http://localhost:3001"

manage:
loadBalancer:
servers:
- url: "http://localhost:3002"

control:
loadBalancer:
servers:
- url: "http://localhost:3003"

auth:
loadBalancer:
servers:
- url: "http://localhost:3010"

func-responses:
loadBalancer:
servers:
- url: "http://localhost:7072"

func-response-processor:
loadBalancer:
servers:
- url: "http://localhost:7073"

0 comments on commit b8da1ba

Please sign in to comment.