github.com/avenga/couper@v1.12.2/server/testdata/integration/http/01_couper.hcl (about) 1 server "first" { 2 hosts = ["*:9090"] 3 4 endpoint "/" { 5 proxy { 6 backend = "b1" 7 } 8 } 9 10 endpoint "/empty" { 11 response { 12 status = 204 13 } 14 } 15 } 16 17 settings { 18 server_timing_header = true 19 } 20 21 definitions { 22 backend "b1" { 23 origin = "http://localhost:8080" 24 } 25 }