From 12386fbfc7f2edccc8c0e181f63b8a8aa64fdc80 Mon Sep 17 00:00:00 2001 From: aptalca Date: Fri, 14 May 2021 17:07:21 -0400 Subject: [PATCH] fix typos --- root/defaults/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/root/defaults/nginx.conf b/root/defaults/nginx.conf index b5f7f8d..ea2830c 100644 --- a/root/defaults/nginx.conf +++ b/root/defaults/nginx.conf @@ -3,7 +3,7 @@ user abc; # Set number of worker processes automatically based on number of CPU cores. -include /config/nginx/worker_processes.conf +include /config/nginx/worker_processes.conf; # Enables the use of JIT for regular expressions to speed-up their processing. pcre_jit on; @@ -30,7 +30,7 @@ http { # Name servers used to resolve names of upstream servers into addresses. # It's also needed when using tcpsocket and udpsocket in Lua modules. #resolver 1.1.1.1 1.0.0.1 2606:4700:4700::1111 2606:4700:4700::1001; - include /config/nginx/resolver.conf + include /config/nginx/resolver.conf; # Don't tell nginx version to the clients. Default is 'on'. server_tokens off;