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/im/deploy/im.hcl | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 app/im/deploy/im.hcl (limited to 'app/im') 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