github.com/avenga/couper@v1.12.2/server/testdata/integration/config/12_couper.hcl (about) 1 server { 2 endpoint "/" { 3 proxy { 4 backend = "ref" 5 } 6 } 7 8 endpoint "/prefixed" { 9 proxy { 10 backend "ref" { 11 path_prefix = "/my-prefix" 12 } 13 } 14 } 15 } 16 17 definitions { 18 backend "ref" { 19 origin = env.COUPER_TEST_BACKEND_ADDR 20 path = "/anything" 21 } 22 } 23 24 settings { 25 no_proxy_from_env = true 26 }