Skip to content

Instantly share code, notes, and snippets.

@bcnzer
Created August 6, 2018 09:17
Show Gist options
  • Save bcnzer/7bf5ad99f894d887b08d8bc1ba9d7fc4 to your computer and use it in GitHub Desktop.
Save bcnzer/7bf5ad99f894d887b08d8bc1ba9d7fc4 to your computer and use it in GitHub Desktop.
Azure Function proxy with response header
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"PingProxy": {
"matchCondition": {
"route": "/api/v1/{*restOfPath}"
},
"backendUri": "https://localhost/api/{restOfPath}",
"responseOverrides": {
"response.headers.spl-version": "2018-03-08"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment