nginx

Installation
SKILL.md

Nginx

Web server configuration, reverse proxy, SSL/TLS, load balancing, caching, and security.

Configuration Structure

# /etc/nginx/nginx.conf — contexts nest: main → events/http → server → location
main context          # worker_processes, error_log, pid
├── events { }        # worker_connections, multi_accept
├── http { }          # upstream, server, mime types, logging
│   ├── server { }    # listen, server_name, ssl
│   │   └── location { }  # request routing
│   └── upstream { }  # backend pools
└── stream { }        # TCP/UDP proxying (mail, databases)
# File layout (Debian/Ubuntu)
Related skills

More from 1mangesh1/dev-skills-collection

Installs
4
GitHub Stars
3
First Seen
Feb 21, 2026