Pricing Docs Blog Apps Tools Support Start Free

Hosting glossary

15 terms that come up when you are trying to get an app online, defined in plain language. No marketing definitions, and every page says what the thing actually costs or actually breaks.

Hosting

Pod

A pod is a dedicated Linux server that runs one app. It has its own CPU, memory, disk, IP address and HTTPS subdomain, and you get root SSH access to it. Unlike a shared function runtime, a pod stays running between requests, so background jobs and long-lived processes keep working.

Read the definition ->
Self-hosting

Self-hosting means running software on a server you control instead of paying a vendor to run it for you. You install the app, own the data, and handle updates, backups and security yourself. The usual motivations are cost, data ownership, and not being repriced by a SaaS company.

Read the definition ->
Managed self-hosting

Managed self-hosting means running open-source software on a server that is yours, while a platform handles provisioning, TLS certificates, updates and backups. You keep the data, the root access and the exit route. You skip the reverse proxy config, the certificate renewals and the 2am restart.

Read the definition ->
PaaS

PaaS, or Platform as a Service, is hosting where you supply the code and the provider supplies everything under it: the operating system, the runtime, the web server and the deployment pipeline. You push a repository, the platform builds and runs it. Heroku, Railway, Render and InstaPods are all PaaS products.

Read the definition ->
Static site hosting

Static site hosting serves pre-built HTML, CSS, JavaScript and image files exactly as they are, with no code running per request. A build step turns your source into a folder of files, and a web server returns them. It is the fastest and cheapest way to host a site, because nothing has to be computed while a visitor waits.

Read the definition ->
Self-hosting vs cloud

Self-hosting runs software on a server you control, so you own the data and the maintenance. Cloud SaaS runs the same category of software for you, so you own neither. The tradeoff is control and cost against convenience: self-hosting is cheaper per seat and more work, SaaS is instant and priced per user forever.

Read the definition ->

Infrastructure

Reverse proxy

A reverse proxy is a server that sits in front of your application, accepts incoming requests, and passes them to the app behind it. It terminates HTTPS, routes by hostname or path, and can cache, compress and rate-limit. nginx, Caddy, Traefik and HAProxy are the common ones.

Read the definition ->
SSH access

SSH access means you can open an encrypted shell session on your server and run commands on it directly. SSH, the Secure Shell protocol, authenticates with a key pair rather than a password. On a hosting platform, having SSH means you can inspect, fix and install things instead of filing a support ticket.

Read the definition ->
Cron job

A cron job is a command scheduled to run automatically at fixed times, defined by a five-field expression such as `0 3 * * *` for 3am daily. The cron daemon has shipped with Unix systems since the 1970s and remains the standard way to run backups, imports, cleanups and report jobs on a Linux server.

Read the definition ->
Persistent storage

Persistent storage is disk space that survives restarts, redeploys and crashes. Files written there are still present afterwards. The opposite is ephemeral storage, where the filesystem is recreated on every deploy, so uploads, SQLite databases and generated files silently disappear.

Read the definition ->
Wildcard SSL certificate

A wildcard SSL certificate secures every first-level subdomain of a domain with a single certificate, written as `*.example.com`. It covers app.example.com and api.example.com, but not deep.sub.example.com. Hosting platforms use wildcards so every customer subdomain is served over HTTPS without issuing a certificate per site.

Read the definition ->

Deployment

AI

Pricing

Want the practical version instead? Browse the 1-click app catalog, the self-hosted app directory, or the framework deploy guides.