Heute wollte ich Nextcloud starten und dann die meldung mit den Berechtigungen ...0770 blabla ..
Wenn ich alles wieder auf 0777 ändere dann kommt wieder die 0770 Meldung.
#!/bin/bash
ncpath='/volume1/web/nextcloud'
ncdatapath='/volume1/nextcloud'
htuser='http'
htgroup='http'
rootuser='root'
printf "chmod Files and Directories\n"
find ${ncpath}/ -type f -print0 | xargs -0 chmod 0640
find ${ncpath}/ -type d -print0 | xargs -0 chmod 0750
find ${ncdatapath}/ -type f -print0 | xargs -0 chmod 0640
find ${ncdatapath}/ -type d -print0 | xargs -0 chmod 0750
printf "chown Directories\n"
chown -R ${rootuser}:${htgroup} ${ncpath}/
chown -R ${htuser}:${htgroup} ${ncpath}/apps/
chown -R ${htuser}:${htgroup} ${ncpath}/config/
chown -R ${htuser}:${htgroup} ${ncpath}/themes/
chown -R ${htuser}:${htgroup} ${ncpath}/updater/
chmod +x ${ncpath}/occ
printf "chmod/chown .htaccess\n"
if [ -f ${ncpath}/.htaccess ]
then
chmod 0644 ${ncpath}/.htaccess
chown ${htuser}:${htgroup} ${ncpath}/.htaccess
fi
chown ${htuser}:${htgroup} ${ncpath}/.user.ini
In gewisser Weise ja, jedoch kann ich das nicht genau sagen. Die Alternative ist, alle relevanten Pfade eintragen, aber dann bist Du ähnlich sicher/unsicher.
Wenn du das Forum hilfreich findest oder uns unterstützen möchtest, dann gib uns doch einfach einen Kaffee aus.
Als Dankeschön schalten wir deinen Account werbefrei.