From df017c29fbf300bfea4f8f68a0be69ac15197555 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Sun, 1 Dec 2019 21:55:08 -0300 Subject: [PATCH] Fix markdown list --- docs/examples/customization/sysctl/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/examples/customization/sysctl/README.md b/docs/examples/customization/sysctl/README.md index 4d3f12764c..2de45b2da1 100644 --- a/docs/examples/customization/sysctl/README.md +++ b/docs/examples/customization/sysctl/README.md @@ -8,7 +8,8 @@ kubectl patch deployment -n ingress-nginx nginx-ingress-controller \ ``` **Changes:** + - Backlog Queue setting `net.core.somaxconn` from `128` to `32768` - Ephemeral Ports setting `net.ipv4.ip_local_port_range` from `32768 60999` to `1024 65000` -In a [post from the NGINX blog](https://www.nginx.com/blog/tuning-nginx/) it is possible to see an explanation for these changes +In a [post from the NGINX blog](https://www.nginx.com/blog/tuning-nginx/), it is possible to see an explanation for the changes.