From 1ad89c8bb21e47ad6e345c8ebdf82bd03ddee3db Mon Sep 17 00:00:00 2001 From: Jangyooseok Date: Mon, 30 Nov 2020 08:34:46 +0900 Subject: [PATCH] fixed misspell Update rootfs/etc/nginx/lua/plugins/README.md --- rootfs/etc/nginx/lua/plugins/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/etc/nginx/lua/plugins/README.md b/rootfs/etc/nginx/lua/plugins/README.md index 5960faf37..4fb53cb7a 100644 --- a/rootfs/etc/nginx/lua/plugins/README.md +++ b/rootfs/etc/nginx/lua/plugins/README.md @@ -15,7 +15,7 @@ By defining functions with the following names, you can run your custom Lua code - `init_worker`: useful for initializing some data per Nginx worker process - `rewrite`: useful for modifying request, changing headers, redirection, dropping request, doing authentication etc - `header_filter`: this is called when backend response header is received, it is useful for modifying response headers - - `log`: this is called when request processing is commpleted and response is delivered to the client + - `log`: this is called when request processing is completed and a response is delivered to the client Check this [`hello_world`](https://github.com/kubernetes/ingress-nginx/tree/master/rootfs/etc/nginx/lua/plugins/hello_world) plugin as a simple example or refer to [OpenID Connect integration](https://github.com/ElvinEfendi/ingress-nginx-openidc/tree/master/rootfs/etc/nginx/lua/plugins/openidc) for more advanced usage.