github.com/avenga/couper@v1.12.2/server/testdata/mtls/02_couper.hcl (about) 1 server { 2 hosts = ["*:4443"] 3 4 endpoint "/" { 5 response { 6 headers = { 7 location = request.url 8 } 9 } 10 } 11 12 tls { 13 server_certificate { 14 public_key = <<-EOC 15 {{ .publicKey }} 16 EOC 17 private_key = <<-EOC 18 {{ .privateKey }} 19 EOC 20 } 21 } 22 }