From 9c1cc18297f9ebe3767edb7a10e4f5ec7acebbdd Mon Sep 17 00:00:00 2001 From: Vasily Ostanin Date: Wed, 5 Oct 2016 13:34:57 +0500 Subject: [PATCH] fix nginx config --- nginx/nginx.conf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 8c8d6db..f681d50 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -41,6 +41,16 @@ http { ssl_dhparam /etc/nginx/dhparam/dhparam.pem; - include /etc/nginx/conf.d/*.conf; + include /etc/nginx/conf.d/*.upstream.conf; + include /etc/nginx/conf.d/*.http.conf; + include /etc/nginx/conf.d/*.http2.conf; + include /etc/nginx/conf.d/default.conf; include /etc/nginx/sites-enabled/*.conf; } + +stream { + include /etc/nginx/conf.d/*.upstream.conf; + include /etc/nginx/conf.d/*.tcp.conf; + include /etc/nginx/conf.d/*.udp.conf; +} +