9 lines
124 B
Bash
9 lines
124 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Start PHP-FPM in the background
|
||
|
|
php-fpm -D
|
||
|
|
|
||
|
|
# Start Nginx in the foreground
|
||
|
|
exec nginx -g "daemon off;"
|