diff options
Diffstat (limited to 'app/dummy/deploy')
-rw-r--r-- | app/dummy/deploy/dummy-nginx.hcl | 35 |
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" - } - } - } -} |