From 94b8e0694c7116fd55fb92d1be9d4dd36757873b Mon Sep 17 00:00:00 2001 From: Caleb Braaten Date: Tue, 6 Feb 2024 12:58:24 -0800 Subject: [PATCH] Add Caddy Service --- nomad_jobs/services/caddy/caddy.nomad.hcl | 44 +++++++++++++++++++++++ nomad_jobs/services/caddy/readme.md | 16 +++++++++ 2 files changed, 60 insertions(+) create mode 100644 nomad_jobs/services/caddy/caddy.nomad.hcl create mode 100644 nomad_jobs/services/caddy/readme.md diff --git a/nomad_jobs/services/caddy/caddy.nomad.hcl b/nomad_jobs/services/caddy/caddy.nomad.hcl new file mode 100644 index 0000000..4963a4c --- /dev/null +++ b/nomad_jobs/services/caddy/caddy.nomad.hcl @@ -0,0 +1,44 @@ +job "caddy" { + datacenters = ["dc1"] + type = "service" + + group "caddy" { + count = 1 + + network { + port "http" { + to = 80 + } + } + + service { + name = "caddy" + provider = "consul" + port = "http" + + tags = [ + "traefik.enable=true", + "traefik.http.routers.caddy.tls=true", + "traefik.http.routers.caddy.entrypoints=websecure", + "traefik.http.routers.caddy.rule=Host(`example.local`)" + ] + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + } + + task "caddy" { + driver = "docker" + + config { + image = "caddy:alpine" + ports = ["http"] + } + + } + } +} diff --git a/nomad_jobs/services/caddy/readme.md b/nomad_jobs/services/caddy/readme.md new file mode 100644 index 0000000..7913f9a --- /dev/null +++ b/nomad_jobs/services/caddy/readme.md @@ -0,0 +1,16 @@ +# Caddy Web Server + +Caddy is a simple and performant web server / reverse proxy written in Go. It is designed to be easy to use and configure. It is great to test network connectivity and routing similar to how someone might use nginx just to make sure the host can be reached and server content. + +While you can absolutely use Caddy as a reverse proxy, Traefik easily integrates with consul for service discovery so that is what is used for the reverse proxy and this nomad job spec is placed behind Traefik. + +## Nomad Job for Caddy + +There are no caddy configurations configured for this job spec. If you run it, it will register with consul and be available to Traefik for routing. If the domain name is configured correctly, you should be able to reach the Caddy welcome page. + +## TODO +If you want to deploy this, you will need to update the domain name in the job spec. + +| Line | Default | Adjustment | +| --- | --- | --- | +| 23 | `"traefik.http.routers.caddy.rule=Host('example.com')"` | Change `example.com` to your domain name |