8 Notas específicas de la distribución sobre la configuración de Nginx para Zabbix

RHEL

Nginx está disponible sólo en EPEL:

dnf -y install epel-release

SLES 12

En SUSE Linux Enterprise Server 12 necesita agregar el repositorio Nginx, antes de instalar Nginx:

zypper addrepo -G -t dnf -c 'http://nginx.org/packages/sles/12' nginx

También necesita configurar php-fpm:

cp /etc/php5/fpm/php-fpm.conf{.default,}
       sed -i 's/user = nobody/user = wwwrun/; s/group = nobody/group = www/' /etc/php5/fpm/php-fpm.conf

SLES 15

En SUSE Linux Enterprise Server 15 necesita configurar php-fpm:

cp /etc/php7/fpm/php-fpm.conf{.default,}
       cp /etc/php7/fpm/php-fpm.d/www.conf{.default,}
       sed -i 's/user = nobody/user = wwwrun/; s/group = nobody/group = www/' /etc/php7/fpm/php-fpm.d/www.conf