From d8f6c27560c86e1347abcec45d8256e16b631e86 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 22 Aug 2022 14:31:55 +0200 Subject: [PATCH] tests - fix configs perms for linux --- examples/wordpress/setup-linux.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/wordpress/setup-linux.sh b/examples/wordpress/setup-linux.sh index 24c2a0f6a..4e822d8bf 100755 --- a/examples/wordpress/setup-linux.sh +++ b/examples/wordpress/setup-linux.sh @@ -20,4 +20,6 @@ chown -R $user:nginx /opt/bunkerweb/www find /opt/bunkerweb/www -type f -exec chmod 0640 {} \; find /opt/bunkerweb/www -type d -exec chmod 0750 {} \; cp -r ./bw-data/configs/* /opt/bunkerweb/configs -chown -R nginx:nginx /opt/bunkerweb/configs \ No newline at end of file +chown -R nginx:nginx /opt/bunkerweb/configs +find /opt/bunkerweb/configs -type f -exec chmod 0644 {} \; +find /opt/bunkerweb/configs -type d -exec chmod 0755 {} \;