Read PHP-FPM's root-owned logs and the deployment-owned Composer project.
phpfpm.error_log_tailphpfpm.slow_log_tailphpfpm.composer_show
Run the Emisar service as root
sudo install -d -m 0755 /etc/systemd/system/emisar.service.d printf '%s\n' '[Service]' 'User=root' 'Group=root' | sudo tee /etc/systemd/system/emisar.service.d/10-php-fpm-host-access.conf >/dev/null sudo systemctl daemon-reload sudo systemctl restart emisar
test "$(systemctl show emisar --property=User --value)" = root sudo test -r /var/log/php-fpm/error.log sudo test -r /var/log/php-fpm/slow.log sudo test -r /var/www/html/composer.lock
Impact: Every Emisar action on this runner executes as root. PHP-FPM logs can contain request details and stack traces, while the application tree can contain source and secrets.