From 5d6b295013236eaded5623c6a31eed2d067c7b64 Mon Sep 17 00:00:00 2001 From: Ezra Buehler Date: Wed, 9 Feb 2022 07:19:49 +0100 Subject: [PATCH] Add support for custom NGINX config Including *.conf files in /etc/nginx/conf.d same as the default NGINX configuration gives the user more flexibility. --- core/nginx/conf/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/nginx/conf/nginx.conf b/core/nginx/conf/nginx.conf index 8fee8989..5d56f76b 100644 --- a/core/nginx/conf/nginx.conf +++ b/core/nginx/conf/nginx.conf @@ -248,6 +248,8 @@ http { proxy_pass http://$admin/internal$request_uri; } } + + include /etc/nginx/conf.d/*.conf; } mail {