From 003b467a21e1fa38abb5a4ddb3d22a683c10d238 Mon Sep 17 00:00:00 2001 From: Tim Bendt Date: Sat, 29 Nov 2025 21:09:59 -0500 Subject: [PATCH] Fix nginx index directive order for root directory - Changed index order from 'index.html index.htm index.php' to 'index.html index.php index.htm' - This fixes 403 forbidden errors when accessing root directory - index.html should be checked first for root requests, then index.php - Resolves directory listing forbidden errors in container logs --- nginx.template.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.template.conf b/nginx.template.conf index 6b9ad70..9301095 100644 --- a/nginx.template.conf +++ b/nginx.template.conf @@ -12,7 +12,7 @@ events { http { include $!{nginx}/conf/mime.types; - index index.html index.htm index.php; + index index.html index.php index.htm; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] $status '