8 lines
83 B
Bash
8 lines
83 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Start PHP-FPM
|
|
php-fpm -D
|
|
|
|
# Start Nginx
|
|
nginx -g 'daemon off;' |