mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-03 10:08:15 -05:00
14 lines
201 B
Plaintext
Executable File
14 lines
201 B
Plaintext
Executable File
#!/command/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
set -e
|
|
|
|
. /bin/common.sh
|
|
|
|
if [ "$(is_true "$DEBUG")" = '1' ]; then
|
|
set -x
|
|
fi
|
|
|
|
log_info 'Starting nginx ...'
|
|
exec s6-setuidgid "$PUID:$PGID" nginx
|