This script checks for new high-severity errors from Namingo Registry and sends real-time push notifications via ntfy.sh.
Clone or copy the files to your server:
sudo mkdir -p /opt/registry/ntfy
cd /opt/registry/ntfy
# Add ntfy_error_notifier.php and ntfy_config.php here
Edit ntfy_config.php
with your database credentials and ntfy topic name:
return [
'db' => [
'host' => 'localhost',
'name' => 'registry',
'user' => 'youruser',
'pass' => 'yourpass',
'charset' => 'utf8mb4'
],
'ntfy_topic' => 'https://ntfy.sh/my-channel', // Replace with your topic
'min_level' => 400,
'last_id_file' => __DIR__ . '/.last_id'
];
- Visit https://ntfy.sh
- Choose a topic name (e.g.,
my-channel
) - Subscribe to it using the ntfy app (Android/iOS) or web
No registration required, but for private topics, consider authentication options.
Run manually to ensure everything works:
php /opt/registry/ntfy/ntfy_error_notifier.php
Open your crontab:
crontab -e
Add the following line to check for errors every minute:
* * * * * /usr/bin/php /opt/registry/ntfy/ntfy_error_notifier.php > /dev/null 2>&1
MIT License