skills$openclaw/nginx-gen
lxgicstudios7.9k

by lxgicstudios

nginx-gen – OpenClaw Skill

nginx-gen is an OpenClaw Skills integration for coding workflows. Generate nginx configs from plain English. Use when you need reverse proxy, SSL, or load balancing setup.

7.9k stars5.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namenginx-gen
descriptionGenerate nginx configs from plain English. Use when you need reverse proxy, SSL, or load balancing setup. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/nginx-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/nginx-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains nginx-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
985 B
index.ts
894 B
_meta.json
276 B
package-lock.json
30.2 KB
package.json
633 B
README.md
624 B
SKILL.md
2.3 KB
tsconfig.json
251 B
SKILL.md

name: nginx-gen description: Generate nginx configs from plain English. Use when you need reverse proxy, SSL, or load balancing setup.

Nginx Gen

Nginx config syntax is cryptic. This tool generates working nginx configurations from plain English descriptions. Reverse proxies, SSL termination, load balancing, caching. All without memorizing directives.

One command. Zero config. Just works.

Quick Start

npx ai-nginx "reverse proxy to localhost:3000 with SSL"

What It Does

  • Generates nginx.conf or site config files
  • Handles reverse proxy, load balancing, and static files
  • Sets up SSL/TLS with proper security headers
  • Includes caching and compression settings
  • Adds comments explaining each directive

Usage Examples

# Simple reverse proxy
npx ai-nginx "proxy /api to port 3000, serve static from /var/www"

# Load balancer
npx ai-nginx "load balance between 3 backend servers on ports 3001-3003"

# SSL setup
npx ai-nginx "SSL for example.com with redirect from http"

# WebSocket support
npx ai-nginx "proxy websocket connections to port 8080"

Best Practices

  • Test config before reload - Always nginx -t first
  • Use include for sites - Keep main config clean
  • Set proper timeouts - Defaults are often too short
  • Enable gzip - The generated configs include compression

When to Use This

  • Setting up a new web server
  • Don't remember the proxy_pass syntax
  • Need to add SSL to an existing site
  • Configuring nginx for a Docker container

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable.

export OPENAI_API_KEY=sk-...
npx ai-nginx --help

How It Works

Takes your description and generates nginx configuration following best practices. Includes security headers, proper SSL settings, and optimization directives. Comments explain each section so you can customize it.

License

MIT. Free forever. Use it however you want.

README.md

ai-nginx

Stop googling nginx config snippets and copy-pasting from StackOverflow. Just describe what you want in plain English.

Install

npm install -g ai-nginx

Usage

# Reverse proxy with SSL
npx ai-nginx "reverse proxy port 3000 with SSL and rate limiting"

# Static site
npx ai-nginx "serve static files from /var/www/html with caching"

# Save to file
npx ai-nginx "load balance between 3 node servers" -o nginx.conf

Setup

Set your OpenAI API key:

export OPENAI_API_KEY=your-key-here

Options

  • -o, --output <file> - Write the config to a file

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable. ```bash export OPENAI_API_KEY=sk-... npx ai-nginx --help ```

FAQ

How do I install nginx-gen?

Run openclaw add @lxgicstudios/nginx-gen in your terminal. This installs nginx-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/nginx-gen. Review commits and README documentation before installing.