Pim van den Berg
acaaeae07b
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/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 $?
|