job "INFRA_CLUSTER_PACKAGE_SERVER" { datacenters = ["dc1"] group "infra-cluster-group" { count = 1 network { port "InfraClusterPackageServer" { static = 9081 } } task "infra-cluster-package-server-task" { driver = "raw_exec" config { command = "C:/Program Files/InfraCluster/PackageServer/Infra.Cluster.PackageServer.exe" } env { ASPNETCORE_ROOTFOLDER = "C:/ProgramData/InfraCluster/PackageSource/" } resources { cpu = 100 memory = 128 } service { name = "infra-cluster-package-server" port = "InfraClusterPackageServer" address = "127.0.0.1" tags = ["http", "static-web-server"] check { type = "http" path = "/" interval = "10s" timeout = "2s" } } } } }