How do you configure custom handlers in Azure Functions?
Set "FUNCTIONS_WORKER_RUNTIME": "custom" in host.json.
"FUNCTIONS_WORKER_RUNTIME": "custom"
host.json
Use Azure Portal to set the custom handler settings.
Set "FUNCTIONS_RUNTIME": "custom" in local.settings.json.
"FUNCTIONS_RUNTIME": "custom"
local.settings.json
Modify local.settings.json to include the customHandler property with the executable path and arguments.
customHandler
Modify host.json to include the customHandler property with the executable path and arguments.
Add "FUNCTIONS_WORKER_RUNTIME": "node" in host.json.
"FUNCTIONS_WORKER_RUNTIME": "node"
Add "FUNCTIONS_WORKER_RUNTIME": "node" in local.settings.json.
Set "WORKER_RUNTIME": "custom" in host.json.
"WORKER_RUNTIME": "custom"
Add "FUNCTIONS_RUNTIME": "node" in local.settings.json.
"FUNCTIONS_RUNTIME": "node"
Add "FUNCTIONS_RUNTIME": "node" in host.json.
Set "FUNCTIONS_WORKER_RUNTIME": "custom" in local.settings.json.
Set "WORKER_RUNTIME": "custom" in local.settings.json.
Add "WORKER_RUNTIME": "node" in host.json.
"WORKER_RUNTIME": "node"
Set "FUNCTIONS_RUNTIME": "custom" in host.json.
Add "WORKER_RUNTIME": "node" in local.settings.json.