14 lines
485 B
Bash
14 lines
485 B
Bash
#!/bin/bash
|
|
find /var/www/ -type f -print0 | xargs -0 chmod 0640
|
|
find /var/www/ -type d -print0 | xargs -0 chmod 0750
|
|
|
|
chown -R acmeuser:ssl-cert /etc/ssl/private
|
|
chown root:ssl-cert /etc/ssl/private/ssl-cert-snakeoil.key
|
|
chmod -R 750 /etc/ssl/private
|
|
find /etc/ssl/private/ -type f -print0 | xargs -0 chmod 0640
|
|
|
|
chown -R www-data:www-data /var/www
|
|
chown -R www-data:www-data /mnt/storage/nc_data
|
|
chmod 0644 /var/www/nextcloud/.htaccess
|
|
chmod 0644 /var/www/nextcloud/.user.ini
|
|
exit 0
|