mirror of https://github.com/status-im/consul.git
28 lines
564 B
HCL
28 lines
564 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
services {
|
|
name = "s1"
|
|
port = 8080
|
|
connect {
|
|
sidecar_service {
|
|
proxy {
|
|
upstreams = [
|
|
{
|
|
destination_name = "s2"
|
|
local_bind_port = 5000
|
|
config {
|
|
protocol = "http"
|
|
}
|
|
}
|
|
]
|
|
config {
|
|
protocol = "http"
|
|
envoy_dogstatsd_url = "udp://127.0.0.1:8125"
|
|
envoy_stats_tags = ["foo=bar"]
|
|
envoy_stats_flush_interval = "1s"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |