Reputation: 1193
I have this problem with Kong Api Gateway-- after all configureation and testings-- I am able to succesfully do this operation:
curl -i -X GET --url http://localhost:8000 --header 'Host: api.saviourgidi.com'
I got this json response back {"hello": "test"}
Indicating this is working well.
--now i want to deploy it to production where clients would not use curl or httpie--
Can I deploy it with nginx and how?
>```
{
// how do I translate this curl command to nginx so that nginx would serve the api.
}
Upvotes: 0
Views: 656
Reputation: 368
Kong is built on NGINX so you don't have to deploy it with NGINX. :)
Are you asking about how to use a load balancer in front of Kong?
Upvotes: 0