Get GWS Backup running securely on your cPanel server in about twenty minutes.
This guide covers cPanel and Linux servers. Running it in a container instead? Use the Docker install guide — it is shorter, and none of the steps below apply.
You'll need four things:
-app.zip), the installer (-installer.php) and a README with these same instructions. Each is listed with a SHA-256 so you can check what you got.The app itself needs roughly 100 MB of disk and about 50 MB of RAM per client workspace. Your actual backup data is stored in your destination (Google Drive, S3, Azure or local disk) — not on the web server.
Never install GWS Backup inside public_html.
The application folder contains your encrypted credentials database, your .env encryption keys and your recovery keys. If those live under public_html, one misconfiguration could let anyone on the internet download them. The app is served by Node.js — it does not need to be in your web root, and it must not be.
/home/youruser/gwsbackup ✓ correct
/home/youruser/public_html/backup ✗ never
Use a random subdomain name.
Bots constantly scan predictable names like backup.yourdomain.com and admin.yourdomain.com looking for login panels to attack. Give your installation an unguessable address instead — for example vault‑k7x93q.yourdomain.com — and don't link to it from anywhere public. Your login page effectively becomes invisible to automated scanners.
Always use HTTPS. Run AutoSSL on the new subdomain before your first login so your admin password never travels in plain text.
In cPanel → Domains → Create a New Domain (or Subdomains):
vault-k7x93q.yourdomain.compublic_html, e.g. /home/youruser/gwsbackup_webThen open SSL/TLS Status and run AutoSSL so the subdomain gets a certificate.
cPanel ships one of two tools for this, and which one you have is decided by your host, not by you. Look in cPanel for whichever of these you can see — the settings are the same either way, only the screen differs.
Whichever screen you are on, the values are:
gwsbackup (a folder in your home directory — not inside public_html)app.jsCreate or register the application, then stop it for now — there is nothing to run until the files are in place.
In File Manager, open the application root folder (e.g. /home/youruser/gwsbackup) and upload the -app.zip and -installer.php from your download. Then open the cPanel Terminal (or SSH) and run:
Use whichever version you downloaded. The wizard extracts the application, then removes the payload zip and any installer from an earlier release automatically to keep the server clean. No terminal access? Use File Manager's Extract on the -app.zip instead, then delete the zip manually — note that this skips the automatic database backup the installer would have taken first.
Back in Setup Node.js App (Route A) or Application Manager (Route B), add an environment variable so sign-in and Google callbacks return to the right address:
(your real subdomain, including https://).
Start the application. On first boot it generates its own keys and writes a complete
.env in the app folder, including the ENCRYPTION_KEY that
protects every credential it will ever store. Back that file up before you go
any further. Your recovery key is generated later, inside the app, and shown
to you on screen — nothing writes it to the server.
Visit https://your-random-subdomain/ in a browser:
That's it — set your backup schedule and destination in Settings and you're protected.
Updates are one command, and your database is backed up automatically first:
-app.zip and its matching -installer.php into your existing application root (the folder containing gws-backup.db).The script backs up every database file — the console database, the per-client databases under clients/, and their write-ahead logs — to db_backups/backup_db_<timestamp>.zip, then clears the old build, extracts the new one and removes the update files. Your data, licence and settings are untouched. Finally, restart the app in Setup Node.js App.
Once you've confirmed an update is stable, delete older archives from db_backups/ — they count against your hosting quota.
Inside your application root, treat these as crown jewels and keep your own offline copies:
.env — contains your ENCRYPTION_KEY. Without it, every credential stored in the app is permanently undecryptable..env; it
is the only way back into a locked-out account, because the app cannot send email.gws-backup.db — the console database: clients, encrypted credentials,
schedules, the job log and the audit log.clients/ — one database per client, holding that client’s backup
index. This is the bulk of your data and it is not optional: without it the
console knows nothing about what has been backed up.gws-backup-archive.db — present on older installations only. If it is
there, it counts.Migrating servers? Stop the app first, then move the whole application
folder and keep the same .env. Copy every database file together with its
-wal and -shm companions — do not delete them and do not copy a
.db on its own. The -wal holds committed data that has not been
folded into the main file yet, so a database copied without it silently arrives missing
its most recent minutes. Remember your licence key may only be live on
one installation at a time — retire the old server when the new one
goes live.
What that means in practice:
NEXTAUTH_URL is missing or wrong (step 4).Still stuck? Check the FAQ — it's searchable — or use the contact form (allow 1–2 days for free-edition support).