S
Supanote
Sign in Sign up
Production Tested Templates

Developer Starter Templates

Jumpstart your infrastructure, databases, and pipelines with zero-dependency verified configurations. Fork any snippet directly into your workspace.

nginx Verified Starter

Nginx Reverse Proxy with SSL & Security Headers

Production-ready reverse proxy with TLS 1.3, Brotli, and strict security headers.

# Production Nginx Reverse Proxy Configuration
server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name api.example.com;

    # SSL Certificates & Modern Ciphers
    ssl_certificate...
yaml Verified Starter

Docker Compose Production Web Stack

Full-stack production docker-compose with web app, Postgres, and Redis.

version: '3.8'

services:
  web:
    build: .
    restart: always
    environment:
      NODE_ENV: production
      DATABASE_URL: ${DATABASE_URL}
      REDIS_URL: ${REDIS_URL}
    ports:
      - "3000:3000"
    depends_on:
      - db
      - redis
  ...
Notification