2022-12-03 13:23:19 -03:00
|
|
|
#!/command/with-contenv bash
|
2022-11-21 22:31:39 -03:00
|
|
|
# shellcheck shell=bash
|
2022-12-07 10:47:40 -03:00
|
|
|
# Start the NGINX service
|
2022-11-21 22:31:39 -03:00
|
|
|
|
2022-12-07 10:47:40 -03:00
|
|
|
# Replace the bash process with the NGINX process, redirecting stderr to stdout
|
|
|
|
|
exec 2>&1
|
2022-11-21 22:31:39 -03:00
|
|
|
exec nginx
|