Jamdesk Documentation logo

Deployment Overview

Hosting options for your documentation — Jamdesk subdomain, custom domain with SSL, or /docs subpath behind your existing site using a reverse proxy.

Jamdesk deploys your docs automatically to a *.jamdesk.app subdomain. When you are ready to go live on your own domain, you can choose a custom subdomain (like docs.example.com) or host at a /docs subpath on your main site.

Deployment Options

OptionBest ForSetup Complexity
Jamdesk subdomain (your-project.jamdesk.app)Fastest launch, zero DNS workLow
Custom subdomain (docs.example.com)Production docs with your brandMedium
Subpath hosting (example.com/docs)Keep docs on the main domainHigh

Default Hosting (No Setup)

Every project ships live on a Jamdesk subdomain as soon as you connect a repo. This is the simplest option for internal docs, previews, or early launches.

Custom Domain (Subdomain)

Use your own subdomain (for example, docs.example.com) for a branded, public-facing URL. You will add DNS records and verify ownership in the Jamdesk dashboard.

DNS verification and SSL are handled automatically once the records are in place. See Custom Domains for setup.

Subpath Hosting (/docs)

Host docs at example.com/docs by proxying traffic to Jamdesk. This is ideal when you want docs to live under your main marketing domain.

Subpath hosting requires a proxy or CDN layer to forward requests and set the X-Jamdesk-Forwarded-Host header. See Subpath Hosting.

Example Proxy Snippet (nginx)

nginx.conf
location /docs {
    proxy_pass https://YOUR_SLUG.jamdesk.app;
    proxy_set_header X-Jamdesk-Forwarded-Host $host;
}

For a full configuration with SSL, headers, and provider-specific guidance, see the Subpath Hosting guide.

Provider Guides

Choose your infrastructure to implement subpath hosting:

Cloudflare

Use Cloudflare Workers to proxy /docs traffic

AWS

Configure CloudFront with Route 53

Vercel

Add rewrites or edge middleware

Reverse Proxy

nginx, Apache, or other proxy servers

What's Next?

Build & Deploy Lifecycle

How builds are triggered and deployed

Subpath Hosting

Host docs at /docs on your main domain

Custom Domains

Set up docs.yourdomain.com

DNS Troubleshooting

Fix DNS propagation and verification issues