github.com/avenga/couper@v1.12.2/server/testdata/integration/http/02_couper.hcl (about)

     1  server "second" {
     2    endpoint "/" {
     3      proxy {
     4        backend = "b1"
     5      }
     6  
     7      request "REQ" {
     8        backend = "b2"
     9      }
    10    }
    11  }
    12  
    13  settings {
    14    server_timing_header = true
    15  }
    16  
    17  definitions {
    18    backend "b1" {
    19      origin = "${env.COUPER_TEST_BACKEND_ADDR}"
    20      path = "/anything"
    21    }
    22  
    23    backend "b2" {
    24      origin = "${env.COUPER_TEST_BACKEND_ADDR}"
    25      path = "/small"
    26    }
    27  }