Browser installer
Connect the existing phpMyAdmin database, import all tables, create the first administrator, and generate encryption keys.
A web-ready HTML interface, PHP API, MySQL/MariaDB database, approval workflow, heartbeat validation, and instant remote suspension for AtomStabilizer.
The frontend and API can run from public_html, /var/www/html, a subdomain, or a normal website subfolder. No custom document-root configuration is required.
Connect the existing phpMyAdmin database, import all tables, create the first administrator, and generate encryption keys.
Use the included public page, status widget, or fetch the health endpoint from another allowed HTML website through configurable CORS.
Every new server starts as pending. Activate, suspend, reactivate, or permanently revoke it from the secure admin panel.
The public health endpoint returns JSON and can be called by any origin added during installation. Same-site HTML works automatically.
<span id="atom-api">Checking…</span>
<script>
fetch('https://pluginsapi.atomnode.space/api/v1/health.php')
.then(response => response.json())
.then(data => {
document.querySelector('#atom-api').textContent =
data.ok ? 'AtomStabilizer API is online' : 'API unavailable';
});
</script>
https://pluginsapi.atomnode.space/api/v1/health.php
https://pluginsapi.atomnode.space/api/v1/register.php
https://pluginsapi.atomnode.space/api/v1/heartbeat.php