Skip to content

Commit

Permalink
Include daemon and server conf dirs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobSanford committed Aug 1, 2023
1 parent ca3eb78 commit 00193e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/conf/nginx/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ http {
sendfile on;
keepalive_timeout 30;

include NGINX_CONFD_SLUG/daemon/*.conf;

server {
listen 80;
charset utf-8;
Expand All @@ -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
Expand Down

0 comments on commit 00193e3

Please sign in to comment.