I am setting up tyk open source gateway locally using helm and every things worked correctly until I tried to create a custom api and connect to it
I am using this api
{
"name": "Keyless-HttpBin",
"api_id": "1",
"org_id": "default",
"use_keyless": true,
"auth": {
"auth_header_name": ""
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default",
"expires": "3000-01-02 15:04",
"use_extended_paths": true,
"extended_paths": {
"ignored": [],
"white_list": [],
"black_list": []
}
}
}
},
"proxy": {
"listen_path": "/httpbin/",
"target_url": "http://httpbin.org",
"strip_listen_path": true
},
"active": true
}
this is the error I get from viewing the logs of the Tyk-gateway
and The result of the health check on the gateway give me
{
"status": "pass",
"version": "5.2.3",
"description": "Tyk GW",
"details": {
"redis": {
"status": "pass",
"componentType": "datastore",
"time": "2024-03-25T13:36:54Z"
}
}
}
Please help me to fix this issue.