11 lines
244 B
Bash
11 lines
244 B
Bash
#!/bin/bash
|
|
|
|
#Start Zabbix
|
|
/usr/sbin/zabbix_server -c /etc/zabbix/zabbix_server.conf
|
|
|
|
#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
|