5 lines
80 B
Text
5 lines
80 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
# pipe stderr to stdout and run php-fpm
|
||
|
exec 2>&1
|
||
|
exec php-fpm7 -F
|