Pricing Docs Blog Apps Tools Support Start Free
Hosting

What is 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.

Also called: static hosting, JAMstack hosting. Last reviewed August 2026.

How does static hosting work?

A generator such as Astro, Hugo, Eleventy or Vite compiles your source into a folder of finished files. You upload that folder. The web server returns each file directly from disk. There is no database query, no template render and no runtime, which is why static pages are hard to beat on speed.

The InstaPods static preset serves files with nginx on the $3/mo Launch plan, which includes 10 GB of disk and unmetered traffic. Source: InstaPods plan table, verified 2026-08-06

When is a static site not enough?

The moment you need something to happen on the server. Form handling, user logins, a database, a scheduled job, an API route, or server-side rendering all need a running process. That is the line between static hosting and an app server, and crossing it is the most common reason people outgrow a static host.

  • Contact forms that store submissions rather than emailing them from the browser.
  • Anything with accounts, sessions or a login.
  • Server-side rendering, including Next.js and Astro in SSR mode.
  • Scheduled work such as a nightly rebuild or an import job.

What does static hosting cost?

Often nothing on a free tier, until a bandwidth bill or a build-minute cap arrives. A flat-priced pod costs $3/mo, serves the same files, and does not meter traffic, and because it is a real server you can move a static site to a dynamic one later without changing platforms.

Where static site hosting shows up on InstaPods

Related terms

Try it on a real server

InstaPods gives you a pod with SSH access, automatic HTTPS and persistent disk from $3/mo. One command from your project folder.

Deploy your first pod

Back to the hosting glossary