-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLI: support for reload #113
Milestone
Comments
Sounds good. Should be pretty quick to do, I'll see next week too |
Is it supposed to reload the nginx.conf or also the kong.yml? |
It would be nice if it could reload |
Merged
javierguerragiraldez
pushed a commit
that referenced
this issue
Sep 3, 2021
gszr
pushed a commit
that referenced
this issue
Oct 26, 2021
gszr
pushed a commit
that referenced
this issue
Oct 27, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Implementing support for nginx reload to reload nginx configuration without downtime. Required to support a specific class of Plugins, like the Nginx Plus plugin:
kong reload
.A few notes on the
reload
functionality: nginx starts a new set of workers reloading the configuration, keeping the samemaster
process alive. Every new incoming request will be forwarded to the new workers, and once the old workers have processed all the remaining requests nginx will automatically shut them down. This means there is no downtime.The text was updated successfully, but these errors were encountered: