tests - fix configs perms for linux

This commit is contained in:
florian 2022-08-22 14:31:55 +02:00
parent cb56e7d04a
commit d8f6c27560
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 3 additions and 1 deletions

View File

@ -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
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 {} \;