From 6c1c7b35a57669b5974ad6fa26c42bf2632dbb61 Mon Sep 17 00:00:00 2001 From: Toby Murray Date: Wed, 23 Oct 2024 19:59:56 -0400 Subject: [PATCH] Separate command lines I don't think this works if the commands are invoked on the same line with no thing joining them, so separate them on to separate lines. --- docs/deploying/generic.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/deploying/generic.md b/docs/deploying/generic.md index 2ea32e3a..6c478d19 100644 --- a/docs/deploying/generic.md +++ b/docs/deploying/generic.md @@ -76,13 +76,15 @@ If you are using a dedicated user for conduwuit, you will need to allow it to read the config. To do that you can run this: ```bash -sudo chown -R root:root /etc/conduwuit sudo chmod -R 755 /etc/conduwuit +sudo chown -R root:root /etc/conduwuit +sudo chmod -R 755 /etc/conduwuit ``` If you use the default database path you also need to run this: ```bash -sudo mkdir -p /var/lib/conduwuit/ sudo chown -R conduwuit:conduwuit /var/lib/conduwuit/ +sudo mkdir -p /var/lib/conduwuit/ +sudo chown -R conduwuit:conduwuit /var/lib/conduwuit/ sudo chmod 700 /var/lib/conduwuit/ ```