aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-08-24 15:44:40 +0200
committerAlex Auvolat <alex@adnab.me>2022-08-24 15:44:40 +0200
commit981294e3d7a180a3c08f8173dc652b73b6e2bd07 (patch)
tree22e4e2a4d64fbca982ac4a33ce0f2cb620d8f302 /app
parent2e8923b383eb06c53261eee8e5c442b857fb67e4 (diff)
downloadnixcfg-981294e3d7a180a3c08f8173dc652b73b6e2bd07.tar.gz
nixcfg-981294e3d7a180a3c08f8173dc652b73b6e2bd07.zip
Move dummy nginx to cluster/staging
Diffstat (limited to 'app')
-rw-r--r--app/dummy/deploy/dummy-nginx.hcl35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/dummy/deploy/dummy-nginx.hcl b/app/dummy/deploy/dummy-nginx.hcl
deleted file mode 100644
index a8990c6..0000000
--- a/app/dummy/deploy/dummy-nginx.hcl
+++ /dev/null
@@ -1,35 +0,0 @@
-job "dummy-nginx" {
- datacenters = ["neptune"]
- type = "service"
-
- group "nginx" {
- count = 1
-
- network {
- port "http" {
- to = 80
- }
- }
-
- task "nginx" {
- driver = "docker"
- config {
- image = "nginx"
- ports = [ "http" ]
- }
- }
-
- service {
- port = "http"
- tags = [
- "tricot home.adnab.me 100",
- ]
- check {
- type = "http"
- path = "/"
- interval = "10s"
- timeout = "2s"
- }
- }
- }
-}