Pricing Docs Blog Apps Tools Get Started
Node.js

Deploy Astro SSR in 60 Seconds

Astro is the content-first web framework with island architecture. Deploy Astro in SSR mode with server endpoints, dynamic pages, and zero-JS by default.

Deploy Astro SSR Starting at $3/mo

The usual way to deploy Astro SSR

  1. Astro SSR requires the @astrojs/node adapter — but the standalone vs middleware mode config is confusing
  2. Standalone mode produces a server entry point, but you need to figure out the host/port binding and process management
  3. Static assets in client/ and server entry in server/ — setting up nginx to serve assets directly while proxying SSR is non-trivial
  4. Choosing between static (pre-rendered) and hybrid (per-route) output modes and understanding which pages get SSR vs static
  5. Deploying to Vercel/Netlify uses their specific adapters — switching to self-hosted means rewriting the adapter config

Astro is brilliantly simple in development but the SSR deployment story is still fragmented.

Or just run one command

$ instapods deploy my-astro-site --preset nodejs
→ Uploading files...
→ Installing dependencies (npm install)...
→ Building (astro build)...
→ Starting Node server...
✓ Live at https://my-astro-site.instapods.app

What you get

Recommended plan for Astro SSR

Launch Plan
$3/mo
Deploy Astro SSR

Astro SSR deployment notes

Node Adapter

Use @astrojs/node with mode: "standalone" in astro.config.mjs. InstaPods runs the built server entry directly with Node.js. No middleware adapter needed.

Hybrid Rendering

Use output: "hybrid" to statically pre-render most pages while keeping specific routes as SSR. Both rendering modes are served from the same server.

Static Alternative

If your Astro site is fully static (no SSR endpoints), build with output: "static" and deploy with --preset static for the simplest and cheapest setup.

Deploy Astro SSR in 60 seconds

One command. Real server. HTTPS included. No DevOps degree required.

Get Started