diff options
author | EuAndreh <eu@euandre.org> | 2020-08-14 08:45:52 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-14 08:45:52 -0300 |
commit | 42c144cac8e3bbd06269f5dd4442580a1f168966 (patch) | |
tree | 62fa29157bd2547d7ac3fbc96a1a32f7d9b922bb /vps-configuration.env.nix | |
parent | Setup cgit and Prosody (diff) | |
download | server-42c144cac8e3bbd06269f5dd4442580a1f168966.tar.gz server-42c144cac8e3bbd06269f5dd4442580a1f168966.tar.xz |
Don't make lighttpd the user owner of $GIT_ROOT
Diffstat (limited to 'vps-configuration.env.nix')
-rw-r--r-- | vps-configuration.env.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vps-configuration.env.nix b/vps-configuration.env.nix index a08e50e..1c954c2 100644 --- a/vps-configuration.env.nix +++ b/vps-configuration.env.nix @@ -177,7 +177,7 @@ in { wantedBy = [ "multi-user.target" ]; script = '' mkdir -p ${envsubstConfiguration.gitRoot} - chown -R lighttpd:users ${envsubstConfiguration.gitRoot} + chown -R andreh:lighttpd ${envsubstConfiguration.gitRoot} chmod -R 770 ${envsubstConfiguration.gitRoot} ''; serviceConfig = { |