From 949f2523f900604e688129563d952f03fc6e0bb3 Mon Sep 17 00:00:00 2001
From: TomZ <tom@flowee.org>
Date: Mon, 21 Feb 2022 22:35:08 +0100
Subject: [PATCH] Fix permissions

The text just sets the ownership and ignores that defaults on unix
are to have newly created dirs be readable by everyone.
This closes the database to unauthorized users on multi-user systems.
---
 DEPLOY.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/DEPLOY.md b/DEPLOY.md
index a28218d7..3d1b780e 100644
--- a/DEPLOY.md
+++ b/DEPLOY.md
@@ -150,6 +150,7 @@ If you use the default database path you also need to run this:
 ```bash
 sudo mkdir -p /var/lib/matrix-conduit/
 sudo chown -R conduit:nogroup /var/lib/matrix-conduit/
+sudo chmod 700 /var/lib/matrix-conduit/
 ```
 
 ## Setting up the Reverse Proxy