Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    ssujitx

    networking-proxy

    ssujitx/networking-proxy
    Productivity
    6
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Guide to Docklift's networking, custom domains, and Nginx reverse proxy.

    SKILL.md

    Networking & Proxy Guide

    Docklift uses a dedicated Nginx container (docklift-nginx-proxy) to handle routing for user applications.

    Architecture

    • Main Nginx: Routes standard traffic (dashboard port 8080).
    • Proxy Nginx: Routes Tenant/Project traffic (port 80/443).
    • Docker Network: docklift_network (bridge).

    How Routing Works

    1. Project Creation:

      • User assigns a domain (e.g., app.example.com) or port.
      • Backend assigns an internal container port.
    2. Config Generation:

      • Code: backend/src/services/nginx.ts
      • Generates a config file in nginx-proxy/conf.d/<projectId>.conf.
    3. Nginx Reload:

      • Backend runs docker exec docklift-nginx-proxy nginx -s reload.
      • Nginx loads the new config.

    Config Template

    A typical generated config looks like:

    server {
        listen 80;
        server_name app.example.com;
    
        location / {
            proxy_pass http://dl_<shortId>_<serviceName>:<internal_port>;
            proxy_set_header Host $host;
            # ... standard proxy headers
        }
    }
    

    Troubleshooting

    • 502 Bad Gateway:
      • The application container is not running.
      • The application is not listening on the expected port.
      • The container is not connected to docklift_network.
    • 404 Not Found:
      • The domain does not match server_name in any config.
      • DNS is not pointing to the Docklift server IP.
    • Config Errors:
      • Check valid syntax: docker exec docklift-nginx-proxy nginx -t
    Repository
    ssujitx/docklift
    Files