mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
56a92e5c0e
Optionally run as another user/group only if the env vars are specified. Should give flexibility to those who need to run processes as root and open ports without having to request additional priveleges
25 lines
456 B
Bash
Executable File
25 lines
456 B
Bash
Executable File
#!/command/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
set -e
|
|
|
|
log_info 'Setting ownership ...'
|
|
|
|
# root
|
|
chown root /tmp/nginx
|
|
|
|
# npmuser
|
|
chown -R "$PUID:$PGID" /data \
|
|
/etc/letsencrypt \
|
|
/run/nginx \
|
|
/tmp/nginx \
|
|
/var/cache/nginx \
|
|
/var/lib/logrotate \
|
|
/var/lib/nginx \
|
|
/var/log/nginx
|
|
|
|
# Don't chown entire /etc/nginx folder as this causes crashes on some systems
|
|
chown -R "$PUID:$PGID" /etc/nginx/nginx \
|
|
/etc/nginx/nginx.conf \
|
|
/etc/nginx/conf.d
|