Hosting for Next.js apps
Built SSR or App Router in Cursor / v0 / by hand? Upload a ZIP or connect GitHub — Deployka detects Node, builds the app, and gives you an HTTPS URL. No VPS or manual nginx.
What this page covers
- SSR / App Router
- .next and next start
- Node version + packageManager
- ENV and NEXT_PUBLIC_*
- HTTPS on Node Pro
How to deploy
- ZIP or public GitHub with package.json and a Next.js project.
- Add required ENV (API secrets, DATABASE_URL, etc.) — we set PORT for you.
- Deploy → npm/pnpm/yarn install + build + start → HTTPS on *.deployka.dev.
ENV you need
- PORT — system var, set automatically.
- NEXT_PUBLIC_* — public client variables.
- Server secrets (API keys, DATABASE_URL) — dashboard ENV only, never in the repo.
Package managers and stack
- npm
- pnpm
- yarn — detected from the lockfile in the project root
Common failures
- Build fails on missing module — check the lockfile and that runtime deps are in dependencies, not only devDependencies.
- App listens on localhost / wrong PORT — Deployka sets PORT; your start script must read it.
- Runtime ENV errors — open Deploy Doctor or dashboard logs before redeploying.
Pricing
For Next.js / Nuxt / SSR we usually recommend Node Pro — 799 ₽/mo (2 vCPU, 1.5 GB RAM). Fixed price, no surprise bandwidth fees.
Code ready. Deployka runs it.