11 lines
157 B
Bash
11 lines
157 B
Bash
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
/usr/sbin/php-fpm8.1 --nodaemonize --fpm-config /etc/php/8.1/fpm/php-fpm.conf &
|
||
|
|
||
|
/usr/sbin/apache2ctl -D FOREGROUND &
|
||
|
|
||
|
wait -n
|
||
|
|
||
|
exit $?
|