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

     1  server "form-params-in-backend" {
     2    error_file = "./../server_error.html"
     3  
     4    endpoint "/" {
     5      proxy {
     6        backend "anything" {
     7          remove_form_params = ["x"]
     8        }
     9      }
    10    }
    11  }
    12  
    13  definitions {
    14    backend "anything" {
    15      path = "/anything"
    16      origin = env.COUPER_TEST_BACKEND_ADDR
    17    }
    18  }