From 7c775e601700505d8cc6d2ab809ea0f459a6257b Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 29 Dec 2021 22:15:49 +0100 Subject: [PATCH] fix tabs --- .../deploy/yugabyte.hcl | 0 app/im/deploy/im.hcl | 74 +++++++++---------- 2 files changed, 37 insertions(+), 37 deletions(-) rename app/{yugabyte => bad.yugabyte}/deploy/yugabyte.hcl (100%) diff --git a/app/yugabyte/deploy/yugabyte.hcl b/app/bad.yugabyte/deploy/yugabyte.hcl similarity index 100% rename from app/yugabyte/deploy/yugabyte.hcl rename to app/bad.yugabyte/deploy/yugabyte.hcl diff --git a/app/im/deploy/im.hcl b/app/im/deploy/im.hcl index 19f7542..09d840b 100644 --- a/app/im/deploy/im.hcl +++ b/app/im/deploy/im.hcl @@ -1,48 +1,48 @@ job "im" { - datacenters = ["neptune"] - type = "service" - - group "synapse" { - count = 1 + datacenters = ["neptune"] + type = "service" + + group "synapse" { + count = 1 - constraint { - attribute = "${attr.unique.hostname}" - operator = "=" - value = "cariacou" - } + constraint { + attribute = "${attr.unique.hostname}" + operator = "=" + value = "cariacou" + } - network { - port "http" { - to = 8008 - } - } + network { + port "http" { + to = 8008 + } + } - task "synapse" { - driver = "docker" - config { - image = "matrixdotorg/synapse:v1.48.0" - ports = [ "http" ] + task "synapse" { + driver = "docker" + config { + image = "matrixdotorg/synapse:v1.48.0" + ports = [ "http" ] volumes = [ "/mnt/ssd/synapse:/data", ] - } - } + } + } - service { - port = "http" - tags = [ - "tricot matrix.home.adnab.me 100", - "tricot matrix.home.adnab.me:443 100", - "tricot matrix.home.adnab.me:8448 100", + service { + port = "http" + tags = [ + "tricot matrix.home.adnab.me 100", + "tricot matrix.home.adnab.me:443 100", + "tricot matrix.home.adnab.me:8448 100", "tricot-add-header Access-Control-Allow-Origin *", - ] - check { - type = "http" - path = "/" - interval = "10s" - timeout = "2s" - } - } - } + ] + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + } + } }