From 17b2c82339df911f9aced8eea42ff342f6ea8719 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 25 Dec 2021 22:39:05 +0100 Subject: update im config --- app/dummy/deploy/dummy-synapse.hcl | 48 -------------------------------------- app/im/deploy/im.hcl | 48 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 48 deletions(-) delete mode 100644 app/dummy/deploy/dummy-synapse.hcl create mode 100644 app/im/deploy/im.hcl (limited to 'app') diff --git a/app/dummy/deploy/dummy-synapse.hcl b/app/dummy/deploy/dummy-synapse.hcl deleted file mode 100644 index 2d54960..0000000 --- a/app/dummy/deploy/dummy-synapse.hcl +++ /dev/null @@ -1,48 +0,0 @@ -job "dummy-synapse" { - datacenters = ["neptune"] - type = "service" - - group "synapse" { - count = 1 - - constraint { - attribute = "${attr.unique.hostname}" - operator = "=" - value = "cariacou" - } - - network { - port "http" { - to = 8008 - } - } - - task "synapse" { - driver = "docker" - config { - image = "matrixdotorg/synapse:v1.48.0" - ports = [ "http" ] - volumes = [ - "/mnt/ssd/dummy-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", - "tricot-add-header Access-Control-Allow-Origin *", - ] - check { - type = "http" - path = "/" - interval = "10s" - timeout = "2s" - } - } - } -} diff --git a/app/im/deploy/im.hcl b/app/im/deploy/im.hcl new file mode 100644 index 0000000..19f7542 --- /dev/null +++ b/app/im/deploy/im.hcl @@ -0,0 +1,48 @@ +job "im" { + datacenters = ["neptune"] + type = "service" + + group "synapse" { + count = 1 + + constraint { + attribute = "${attr.unique.hostname}" + operator = "=" + value = "cariacou" + } + + network { + port "http" { + to = 8008 + } + } + + 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", + "tricot-add-header Access-Control-Allow-Origin *", + ] + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + } + } +} -- cgit v1.2.3