diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-02 07:52:54 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-02 07:52:54 +0100 |
commit | 163472bed90d2514e38ca9e3659fa3afe06a9f2e (patch) | |
tree | 521101fedf49a0b520b68dc277d2f1395a48f93a /nomad | |
parent | c8c2cdf8d416f6a4a04a1765bce41a557df74566 (diff) | |
download | infrastructure-163472bed90d2514e38ca9e3659fa3afe06a9f2e.tar.gz infrastructure-163472bed90d2514e38ca9e3659fa3afe06a9f2e.zip |
webpull
Diffstat (limited to 'nomad')
-rw-r--r-- | nomad/web_static.hcl | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/nomad/web_static.hcl b/nomad/web_static.hcl index 8e0042b..5a3b80f 100644 --- a/nomad/web_static.hcl +++ b/nomad/web_static.hcl @@ -11,14 +11,23 @@ job "web_static" { task "server" { driver = "docker" config { - image = "superboum/amd64_landing:v8" + image = "superboum/amd64_webpull_pug:v4" port_map { - web_port = 8043 + web_port = 8080 } } + template { + data = <<EOH +WEBPULL_REPO="https://git.deuxfleurs.fr/Deuxfleurs/site.git" +WEBPULL_TOKEN="{{ key "secrets/web/home_token" | trimSpace }}" +EOH + destination = "secrets/env" + env = true + } + resources { - memory = 20 + memory = 200 network { port "web_port" {} } @@ -29,7 +38,7 @@ job "web_static" { "webstatic", "traefik.enable=true", "traefik.frontend.entryPoints=https,http", - "traefik.frontend.rule=Host:deuxfleurs.fr,www.deuxfleurs.fr,deuxfleurs.org,www.deuxfleurs.org;Path:/,/robots.txt,/landing/arobase.png" + "traefik.frontend.rule=Host:deuxfleurs.fr,www.deuxfleurs.fr,deuxfleurs.org,www.deuxfleurs.org;PathPrefix:/" ] port = "web_port" address_mode = "host" |