aboutsummaryrefslogtreecommitdiff
path: root/nomad/chat.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'nomad/chat.hcl')
-rw-r--r--nomad/chat.hcl21
1 files changed, 19 insertions, 2 deletions
diff --git a/nomad/chat.hcl b/nomad/chat.hcl
index 812f009..042e619 100644
--- a/nomad/chat.hcl
+++ b/nomad/chat.hcl
@@ -12,6 +12,7 @@ job "chat" {
readonly_rootfs = true
port_map {
client_port = 8008
+ federation_port = 8448
}
command = "python"
args = [
@@ -96,18 +97,20 @@ job "chat" {
memory = 4000
network {
port "client_port" { }
+ port "federation_port" { }
}
}
service {
- name = "synapse"
+ name = "synapse-client"
port = "client_port"
address_mode = "host"
tags = [
"matrix",
"traefik.enable=true",
"traefik.frontend.entryPoints=https",
- "traefik.frontend.rule=Host:im.deuxfleurs.fr,deuxfleurs.fr;PathPrefix:/_matrix"
+ "traefik.frontend.rule=Host:im.deuxfleurs.fr;PathPrefix:/_matrix",
+ "traefik.frontend.priority=100"
]
check {
type = "tcp"
@@ -121,6 +124,20 @@ job "chat" {
}
}
}
+
+ service {
+ name = "synapse-federation"
+ port = "federation_port"
+ address_mode = "host"
+ tags = [
+ "matrix",
+ "traefik.enable=true",
+ "traefik.frontend.entryPoints=https",
+ "traefik.frontend.rule=Host:deuxfleurs.fr;PathPrefix:/_matrix",
+ "traefik.frontend.priority=100"
+ ]
+ }
+
}
}