2022-08-24 23:02:16 +00:00
|
|
|
job "matrix" {
|
2023-05-04 15:00:31 +00:00
|
|
|
datacenters = ["orion", "neptune"]
|
2022-08-24 23:02:16 +00:00
|
|
|
type = "service"
|
2023-02-20 15:43:29 +00:00
|
|
|
priority = 40
|
2022-08-24 23:02:16 +00:00
|
|
|
|
|
|
|
group "matrix" {
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
network {
|
|
|
|
port "api_port" { static = 8008 }
|
2023-05-04 15:00:31 +00:00
|
|
|
port "web_port" { to = 8043 }
|
2022-08-24 23:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task "synapse" {
|
|
|
|
driver = "docker"
|
|
|
|
|
|
|
|
config {
|
2023-03-22 21:23:37 +00:00
|
|
|
image = "superboum/amd64_synapse:v56"
|
2022-08-24 23:02:16 +00:00
|
|
|
network_mode = "host"
|
|
|
|
readonly_rootfs = true
|
|
|
|
ports = [ "api_port" ]
|
|
|
|
command = "python"
|
|
|
|
args = [
|
|
|
|
"-m", "synapse.app.homeserver",
|
|
|
|
"-n",
|
|
|
|
"-c", "/etc/matrix-synapse/homeserver.yaml"
|
|
|
|
]
|
|
|
|
volumes = [
|
|
|
|
"secrets/conf:/etc/matrix-synapse",
|
|
|
|
"/tmp/synapse-media:/var/lib/matrix-synapse/media",
|
|
|
|
"/tmp/synapse-uploads:/var/lib/matrix-synapse/uploads",
|
|
|
|
"/tmp/synapse-logs:/var/log/matrix-synapse",
|
|
|
|
"/tmp/synapse:/tmp"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/synapse/homeserver.yaml")
|
|
|
|
destination = "secrets/conf/homeserver.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/synapse/log.yaml")
|
|
|
|
destination = "secrets/conf/log.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/synapse/conf.d/server_name.yaml")
|
|
|
|
destination = "secrets/conf/server_name.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/synapse/conf.d/report_stats.yaml")
|
|
|
|
destination = "secrets/conf/report_stats.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
# --- secrets ---
|
|
|
|
template {
|
|
|
|
data = "{{ key \"secrets/chat/synapse/homeserver.signing.key\" }}"
|
|
|
|
destination = "secrets/conf/homeserver.signing.key"
|
|
|
|
}
|
|
|
|
|
|
|
|
env {
|
|
|
|
SYNAPSE_CACHE_FACTOR = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
cpu = 1000
|
2023-04-08 08:41:50 +00:00
|
|
|
memory = 500
|
|
|
|
memory_max = 1000
|
2022-08-24 23:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
name = "synapse"
|
|
|
|
port = "api_port"
|
|
|
|
address_mode = "host"
|
|
|
|
tags = [
|
|
|
|
"matrix",
|
|
|
|
"tricot im.deuxfleurs.fr/_matrix 100",
|
|
|
|
"tricot im.deuxfleurs.fr:443/_matrix 100",
|
|
|
|
"tricot im.deuxfleurs.fr/_synapse 100",
|
|
|
|
"tricot-add-header Access-Control-Allow-Origin *",
|
2023-05-04 15:00:31 +00:00
|
|
|
"d53-cname im.deuxfleurs.fr",
|
2022-08-24 23:02:16 +00:00
|
|
|
]
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "api_port"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
task "media-async-upload" {
|
|
|
|
driver = "docker"
|
|
|
|
|
|
|
|
config {
|
2023-03-22 21:23:37 +00:00
|
|
|
image = "superboum/amd64_synapse:v56"
|
2022-08-24 23:02:16 +00:00
|
|
|
readonly_rootfs = true
|
|
|
|
command = "/usr/local/bin/matrix-s3-async"
|
|
|
|
work_dir = "/tmp"
|
|
|
|
volumes = [
|
|
|
|
"/tmp/synapse-media:/var/lib/matrix-synapse/media",
|
|
|
|
"/tmp/synapse-uploads:/var/lib/matrix-synapse/uploads",
|
|
|
|
"/tmp/synapse:/tmp"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
cpu = 100
|
|
|
|
memory = 100
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = <<EOH
|
|
|
|
AWS_ACCESS_KEY_ID={{ key "secrets/chat/synapse/s3_access_key" | trimSpace }}
|
|
|
|
AWS_SECRET_ACCESS_KEY={{ key "secrets/chat/synapse/s3_secret_key" | trimSpace }}
|
|
|
|
AWS_DEFAULT_REGION=garage
|
|
|
|
PG_USER={{ key "secrets/chat/synapse/postgres_user" | trimSpace }}
|
|
|
|
PG_PASS={{ key "secrets/chat/synapse/postgres_pwd" | trimSpace }}
|
|
|
|
PG_DB={{ key "secrets/chat/synapse/postgres_db" | trimSpace }}
|
2023-05-04 14:48:22 +00:00
|
|
|
PG_HOST={{ env "meta.site" }}.psql-proxy.service.2.cluster.deuxfleurs.fr
|
2022-08-24 23:02:16 +00:00
|
|
|
PG_PORT=5432
|
|
|
|
EOH
|
|
|
|
destination = "secrets/env"
|
|
|
|
env = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 15:00:31 +00:00
|
|
|
task "riotweb" {
|
2022-08-24 23:02:16 +00:00
|
|
|
driver = "docker"
|
|
|
|
config {
|
2023-03-22 21:23:37 +00:00
|
|
|
image = "superboum/amd64_riotweb:v33"
|
2022-08-24 23:02:16 +00:00
|
|
|
ports = [ "web_port" ]
|
|
|
|
volumes = [
|
|
|
|
"secrets/config.json:/srv/http/config.json"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/riot_web/config.json")
|
|
|
|
destination = "secrets/config.json"
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
memory = 21
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
tags = [
|
|
|
|
"webstatic",
|
|
|
|
"tricot im.deuxfleurs.fr 10",
|
|
|
|
"tricot riot.deuxfleurs.fr 10",
|
2023-05-04 15:00:31 +00:00
|
|
|
"d53-cname riot.deuxfleurs.fr",
|
2022-08-24 23:02:16 +00:00
|
|
|
]
|
|
|
|
port = "web_port"
|
|
|
|
address_mode = "host"
|
|
|
|
name = "webstatic"
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "web_port"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|