chore: update spec samples

This commit is contained in:
wpetit 2023-04-21 20:03:21 +02:00
parent 0394e34055
commit 10844a15a3
3 changed files with 1 additions and 28 deletions

View File

@ -16,7 +16,6 @@
"config": { "config": {
"appUrlResolving": { "appUrlResolving": {
"ifaceMappings": { "ifaceMappings": {
"lo": "http://{{ .DeviceIP }}:{{ .AppPort }}",
"wlp4s0": "http://{{ .DeviceIP }}:{{ .AppPort }}", "wlp4s0": "http://{{ .DeviceIP }}:{{ .AppPort }}",
"enp0s31f6": "http://{{ .DeviceIP }}:{{ .AppPort }}" "enp0s31f6": "http://{{ .DeviceIP }}:{{ .AppPort }}"
}, },

View File

@ -5,11 +5,6 @@
"port": 8080, "port": 8080,
"host": "arcad" "host": "arcad"
}, },
"portal": {
"type": "_http._tcp",
"port": 8080,
"host": "arcad-portal"
},
"hextris": { "hextris": {
"type": "_http._tcp", "type": "_http._tcp",
"port": 8080, "port": 8080,
@ -19,11 +14,6 @@
"type": "_http._tcp", "type": "_http._tcp",
"port": 8080, "port": 8080,
"host": "arcad-test" "host": "arcad-test"
},
"diffusion": {
"type": "_http._tcp",
"port": 8080,
"host": "arcad-diffusion"
} }
} }
} }

View File

@ -3,10 +3,6 @@
"main": { "main": {
"address": ":8080", "address": ":8080",
"mappings": [ "mappings": [
{
"hostPattern": "portal.localhost.arcad.lan:*",
"target": "http://localhost:8082"
},
{ {
"hostPattern": "hextris.localhost.arcad.lan:*", "hostPattern": "hextris.localhost.arcad.lan:*",
"target": "http://localhost:8083" "target": "http://localhost:8083"
@ -15,14 +11,6 @@
"hostPattern": "test.localhost.arcad.lan:*", "hostPattern": "test.localhost.arcad.lan:*",
"target": "http://localhost:8084" "target": "http://localhost:8084"
}, },
{
"hostPattern": "diffusion.localhost.arcad.lan:*",
"target": "http://localhost:8085"
},
{
"hostPattern": "arcad-portal.local:*",
"target": "http://localhost:8082"
},
{ {
"hostPattern": "arcad-hextris.local:*", "hostPattern": "arcad-hextris.local:*",
"target": "http://localhost:8083" "target": "http://localhost:8083"
@ -31,13 +19,9 @@
"hostPattern": "arcad-test.local:*", "hostPattern": "arcad-test.local:*",
"target": "http://localhost:8084" "target": "http://localhost:8084"
}, },
{
"hostPattern": "arcad-diffusion.local:*",
"target": "http://localhost:8085"
},
{ {
"hostPattern": "*", "hostPattern": "*",
"target": "http://localhost:8082" "target": "http://localhost:8084"
} }
] ]
} }