Split up ownership to indentify point of failure

This commit is contained in:
Jamie Curnow 2023-05-04 08:27:38 +10:00
parent db4ab1d548
commit a1245bc161
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E

View File

@ -11,16 +11,16 @@ log_info 'Setting ownership ...'
chown root /tmp/nginx chown root /tmp/nginx
# npmuser # npmuser
chown -R "$PUID:$PGID" /data \ chown -R "$PUID:$PGID" /data
/etc/letsencrypt \ chown -R "$PUID:$PGID" /etc/letsencrypt
/run/nginx \ chown -R "$PUID:$PGID" /run/nginx
/tmp/nginx \ chown -R "$PUID:$PGID" /tmp/nginx
/var/cache/nginx \ chown -R "$PUID:$PGID" /var/cache/nginx
/var/lib/logrotate \ chown -R "$PUID:$PGID" /var/lib/logrotate
/var/lib/nginx \ chown -R "$PUID:$PGID" /var/lib/nginx
/var/log/nginx chown -R "$PUID:$PGID" /var/log/nginx
# Don't chown entire /etc/nginx folder as this causes crashes on some systems # Don't chown entire /etc/nginx folder as this causes crashes on some systems
chown -R "$PUID:$PGID" /etc/nginx/nginx \ chown -R "$PUID:$PGID" /etc/nginx/nginx
/etc/nginx/nginx.conf \ chown -R "$PUID:$PGID" /etc/nginx/nginx.conf
/etc/nginx/conf.d chown -R "$PUID:$PGID" /etc/nginx/conf.d