mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-27 09:04:58 +08:00
9 lines
196 B
Bash
9 lines
196 B
Bash
#!/bin/sh
|
|
|
|
if command -v supervisord > /dev/null 2>&1; then
|
|
php-fpm -y /usr/local/etc/php-fpm.conf &
|
|
supervisord -c /etc/supervisord.conf
|
|
else
|
|
php-fpm -y /usr/local/etc/php-fpm.conf
|
|
fi
|