From agi-super-team
Configures Nginx for production-grade reverse proxy, load balancing, SSL termination, caching, and API gateway patterns with performance tuning.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:nginx-configurationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Master Nginx configuration for production-grade web servers, reverse proxies, load balancing, SSL termination, caching, and API gateway patterns with advanced performance tuning.
Minimal working example:
# /etc/nginx/nginx.conf
user nginx;
worker_processes auto;
worker_rlimit_nofile 65535;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 4096;
use epoll;
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Logging
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
log_format upstream_time '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" '
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Production Nginx Configuration | Production Nginx Configuration |
| HTTPS Server with Load Balancing | HTTPS Server with Load Balancing |
| Nginx Configuration Script | Nginx Configuration Script |
| Nginx Monitoring Configuration | Nginx Monitoring Configuration |
npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamConfigures Nginx web server for high-performance reverse proxy, load balancing, SSL/TLS termination, caching, and API gateway functionality with production-ready configurations and best practices.
Configures Nginx for reverse proxy, load balancing, SSL termination, and static serving. Covers proxy_pass, try_files, upstream, SSL/TLS, and common mistakes.
Guides Nginx configuration for reverse proxies, SSL/TLS hardening, load balancing strategies, and performance tuning. Useful for proxy_pass, upstream blocks, certbot, gzip, and rate limiting.