Skip to content

Commit 0d12cb7

Browse files
committed
chore: allow process stdout and stderr to be visible
1 parent 5bdd3e1 commit 0d12cb7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/etc/service/nginx/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
set -e
33
[ -f /env ] && . /env 2>/dev/null
4-
exec /usr/sbin/nginx -g 'daemon off;' >/dev/null
4+
exec /usr/sbin/nginx -g 'daemon off;'

src/etc/service/php-fpm/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
set -e
33
[ -f /env ] && . /env 2>/dev/null
4-
exec php-fpm --nodaemonize >/dev/null
4+
exec php-fpm --nodaemonize

src/sbin/runit-wrapper

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ main() {
55
trap on_term TERM INT
66
trap on_usr1 USR1
77
trap on_hup HUP
8-
/sbin/runsvdir-start >/dev/null &
8+
/sbin/runsvdir-start &
99
runsv_pid=$!
1010
while kill -0 "$runsv_pid" 2>/dev/null; do
1111
sleep 1

0 commit comments

Comments
 (0)