summaryrefslogtreecommitdiff
path: root/http.Dockerfile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-25 19:10:25 +0100
committerJoe Carstairs <me@joeac.net>2026-06-25 19:10:25 +0100
commit13c909f085da318e39ed9de363887c94038725cf (patch)
tree6d3a895a7c9bd0e582f92d5d6679ed178099a187 /http.Dockerfile
parent2823433f7c3b6b8b9d20b3a54cc0e43beb534c04 (diff)
chmod 700 in http.Dockerfile (WTF?)
Diffstat (limited to 'http.Dockerfile')
-rw-r--r--http.Dockerfile2
1 files changed, 1 insertions, 1 deletions
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;"