nomad

HCL and Docker files for Nomad deployments
git clone https://git.in0rdr.ch/nomad.git
Log | Files | Refs | Pull requests

commit 7e3c808f45b965942d924845902f39c9d06902a5
parent e48b1458dfa6050139ace029d6f0877514ba70ca
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Fri,  1 Mar 2024 08:25:27 +0100

feat(nginx): fix p0c urls

Diffstat:
Mhcl/default/diary/templates/nginx.conf.tmpl | 4++--
Mhcl/default/myheats/templates/nginx.conf.tmpl | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hcl/default/diary/templates/nginx.conf.tmpl b/hcl/default/diary/templates/nginx.conf.tmpl @@ -1,8 +1,8 @@ server { listen {{ env "NOMAD_PORT_https" }} ssl; - ssl_certificate /etc/letsencrypt/live/diary.in0rdr.ch/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/diary.in0rdr.ch/privkey.pem; + ssl_certificate /etc/letsencrypt/live/diary.p0c.ch/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/diary.p0c.ch/privkey.pem; location / { proxy_pass http://{{ env "NOMAD_ADDR_jekyll" }}; diff --git a/hcl/default/myheats/templates/nginx.conf.tmpl b/hcl/default/myheats/templates/nginx.conf.tmpl @@ -1,8 +1,8 @@ server { listen {{ env "NOMAD_PORT_https" }} ssl; - ssl_certificate /etc/letsencrypt/live/myheats.in0rdr.ch/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/myheats.in0rdr.ch/privkey.pem; + ssl_certificate /etc/letsencrypt/live/myheats.p0c.ch/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/myheats.p0c.ch/privkey.pem; location / { proxy_pass http://{{ env "NOMAD_ADDR_jekyll" }};