skills/nginx/SKILL.md
Configure Nginx for reverse proxy, load balancing, SSL termination, and high-performance static serving.
npx skillsauth add aaaaqwq/agi-super-team NginxInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
User needs Nginx expertise — from basic server blocks to production configurations. Agent handles reverse proxy, SSL, caching, and performance tuning.
| Topic | File |
|-------|------|
| Reverse proxy patterns | proxy.md |
| SSL/TLS configuration | ssl.md |
| Performance tuning | performance.md |
| Common configurations | examples.md |
= first, then ^~ prefix, then regex ~/~*, then longest prefixlocation /api matches /api, /api/, /api/anything — prefix matchlocation = /api only matches exactly /api — not /api/location ~ \.php$ is regex, case-sensitive — ~* for case-insensitive^~ stops regex search if prefix matches — use for static filesproxy_pass http://backend preserves location path — /api/users → /api/usersproxy_pass http://backend/ replaces location path — /api/users → /userscurl -v to see actual backend requesttry_files $uri $uri/ /index.html for SPA — checks file, then dir, then fallback=404 for error$uri/ tries directory with index — set index index.htmlproxy_pass directlyproxy_set_header Host $host — backend sees original host, not proxy IPproxy_set_header X-Real-IP $remote_addr — client IP, not proxyproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for — append to chainproxy_set_header X-Forwarded-Proto $scheme — for HTTPS detectionupstream block — upstream backend { server 127.0.0.1:3000; }proxy_pass http://backend uses upstream — load balancing includedmax_fails and fail_timeout — marks server unavailablekeepalive 32 for connection pooling — reduces connection overheadssl_certificate is full chain — cert + intermediates, not just certssl_certificate_key is private key — keep permissions restrictedssl_protocols TLSv1.2 TLSv1.3 — disable older protocolsssl_prefer_server_ciphers on — server chooses cipher, not clientnginx -t before nginx -s reload — test config firstroot inside location — prefer in server, override only when neededalias vs root — alias replaces location, root appends locationif — many things break inside if, avoid complex logic$uri is decoded, normalized path — /foo%20bar becomes /foo bar$request_uri is original with query string — unchanged from client$args is query string — $arg_name for specific parameter$host from Host header — $server_name from configworker_processes auto — matches CPU coresworker_connections 1024 — per worker, multiply by workers for maxsendfile on — kernel-level file transfergzip on only for text — gzip_types text/plain application/json ...gzip_min_length 1000 — small files not worth compressingaccess_log off for static assets — reduces I/Olog_format — add response time, upstream timeerror_log level: debug, info, warn, error — debug is verbosemap and if — skip health checksdevelopment
Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.
tools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
data-ai
Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.
tools
Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension.