From 00193e35a40c92e95688e51f0ccfa02effd7a60c Mon Sep 17 00:00:00 2001 From: Jacob Sanford Date: Tue, 1 Aug 2023 14:49:00 -0300 Subject: [PATCH] Include daemon and server conf dirs by default --- build/conf/nginx/app.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/conf/nginx/app.conf b/build/conf/nginx/app.conf index 8cf4402..cc91391 100644 --- a/build/conf/nginx/app.conf +++ b/build/conf/nginx/app.conf @@ -4,6 +4,8 @@ http { sendfile on; keepalive_timeout 30; + include NGINX_CONFD_SLUG/daemon/*.conf; + server { listen 80; charset utf-8; @@ -22,6 +24,8 @@ http { location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { access_log off; log_not_found off; } + include NGINX_CONFD_SLUG/server/*.conf; + error_page 404 /index.php; # pass the PHP scripts to php-fpm