diff options
author | Alex Auvolat <alex@adnab.me> | 2022-01-13 12:16:16 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-01-13 12:16:16 +0100 |
commit | 26a072654e1592dcae348f8138b967577b9f83b5 (patch) | |
tree | 661210c6773274ea83155c048ed83634d5ee5891 /app | |
parent | f96b03628363c570cbe78b2ad8230556dc442fa8 (diff) | |
download | nixcfg-26a072654e1592dcae348f8138b967577b9f83b5.tar.gz nixcfg-26a072654e1592dcae348f8138b967577b9f83b5.zip |
Remove useless admin port in tricot
Diffstat (limited to 'app')
-rw-r--r-- | app/frontend/deploy/frontend-tricot.hcl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/frontend/deploy/frontend-tricot.hcl b/app/frontend/deploy/frontend-tricot.hcl index ecd829c..be81a0b 100644 --- a/app/frontend/deploy/frontend-tricot.hcl +++ b/app/frontend/deploy/frontend-tricot.hcl @@ -7,7 +7,6 @@ job "frontend" { network { port "http_port" { static = 80 } port "https_port" { static = 443 } - port "admin_port" { static = 8082 } } task "server" { @@ -17,7 +16,7 @@ job "frontend" { image = "lxpz/amd64_tricot:28" network_mode = "host" readonly_rootfs = true - ports = [ "http_port", "https_port", "admin_port" ] + ports = [ "http_port", "https_port" ] volumes = [ "secrets:/etc/tricot", ] |