From fc1509eed48bf154e525f1e2984e8697b871a979 Mon Sep 17 00:00:00 2001 From: Sean Lane <5761232+seanlane@users.noreply.github.com> Date: Mon, 15 Jan 2018 18:15:17 -0700 Subject: [PATCH] Update README.md (change to ownership command) (#1970) * Update README.md I believe the owner and group of the `chown` command here are mixed up. As it was caused a permissions issue, with the service being unable to read the directory. * Update README.md * Update README.md Revert changes back to the original suggested changes --- dist/init/linux-systemd/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/init/linux-systemd/README.md b/dist/init/linux-systemd/README.md index 70d269a7c..aa3dd75a3 100644 --- a/dist/init/linux-systemd/README.md +++ b/dist/init/linux-systemd/README.md @@ -46,7 +46,7 @@ sudo useradd \ sudo mkdir /etc/caddy sudo chown -R root:www-data /etc/caddy sudo mkdir /etc/ssl/caddy -sudo chown -R www-data:root /etc/ssl/caddy +sudo chown -R root:www-data /etc/ssl/caddy sudo chmod 0770 /etc/ssl/caddy ```