From 13c909f085da318e39ed9de363887c94038725cf Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 25 Jun 2026 19:10:25 +0100 Subject: [PATCH] chmod 700 in http.Dockerfile (WTF?) --- http.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.Dockerfile b/http.Dockerfile index 05440a9..490052c 100644 --- a/http.Dockerfile +++ b/http.Dockerfile @@ -8,6 +8,6 @@ COPY http/nginx.conf /etc/nginx/nginx.conf CMD mkdir -p "$(dirname "$DB_PATH")" \ && touch $DB_PATH \ && chown -R nginx:nginx "$(dirname "$DB_PATH")" \ - && chmod -R 600 "$(dirname "$DB_PATH")" \ + && chmod -R 700 "$(dirname "$DB_PATH")" \ && php-fpm85 \ && nginx -g "daemon off;"