9 lines
172 B
Bash
9 lines
172 B
Bash
#!/bin/bash
|
|
|
|
|
|
#Start Nginx
|
|
/usr/sbin/nginx -g 'daemon on; master_process on;'
|
|
|
|
#Start Php-fpm
|
|
/usr/sbin/php-fpm7.4 --nodaemonize --fpm-config /etc/php/7.4/fpm/php-fpm.conf
|