7 lines
77 B
Bash
7 lines
77 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
mkdir -p /run/nginx
|
|
php-fpm -D
|
|
exec nginx -g "daemon off;"
|