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