Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计提醒

nginx-request-loggingNginx 请求日志记录

Agent Skill

nginx-request-logging 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,073

周安装

43

GitHub Stars

93

下载量

347
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nginx-request-logging(Nginx 请求日志记录)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/nginx-request-logging
安装命令:
npx skills add https://github.com/letta-ai/skills --skill nginx-request-logging
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill nginx-request-logging

简介

nginx-request-logging 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

Nginx Request Logging Configuration

This skill provides guidance for configuring Nginx web servers with custom logging, rate limiting, and error handling.

When to Use This Skill

Apply this skill when tasks involve:

  • Installing and configuring Nginx
  • Setting up custom log formats
  • Implementing rate limiting
  • Creating custom error pages (404, 500, etc.)
  • Configuring Nginx to listen on non-standard ports

Pre-Configuration Analysis

Before modifying any Nginx configuration:

  1. Examine existing configuration structure

- Read /etc/nginx/nginx.conf to understand the current setup - Check for existing include directives to understand file organization - Identify where log formats, rate limiting zones, and other global settings are defined

  1. Check system state

- Verify if Nginx is already installed: which nginx or nginx -v - Check if Nginx is already running: pgrep nginx or ps aux | grep nginx - Verify if the target port is available: ss -tlnp | grep <port> or netstat -tlnp | grep <port>

  1. Backup original configuration

- Create a backup before modifications: cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak

Configuration Approach

Directory Structure

Nginx configurations typically follow this hierarchy:

  • /etc/nginx/nginx.conf - Main configuration (global settings, log formats, rate limiting zones)
  • /etc/nginx/conf.d/ - Site-specific configurations (server blocks)
  • /etc/nginx/sites-available/ and /etc/nginx/sites-enabled/ - Alternative site management (Debian-based)

Configuration Placement Guidelines

Setting TypeLocationReason
Log format definitionsnginx.conf (http block)Must be defined before use in server blocks
Rate limiting zonesnginx.conf (http block)Zones are shared across server blocks
Server blocksconf.d/*.confModular, easy to manage
Custom error pagesServer block or location blockContext-specific

Rate Limiting Configuration

Rate limiting requires two parts:

  1. Zone definition (in http block of nginx.conf): limit_req_zone $binary_remote_addr zone=zonename:10m rate=10r/s;
  2. Zone application (in server or location block): limit_req zone=zonename burst=5 nodelay;

Custom Log Format

Define custom log formats in the http block:

log_format custom_format '$remote_addr - $remote_user [$time_local] '
                         '"$request" $status $body_bytes_sent '
                         '"$http_referer" "$http_user_agent"';

Apply in server block:

access_log /var/log/nginx/custom_access.log custom_format;

Service Management

Nginx service management varies by environment:

EnvironmentStart CommandReload CommandStop Command
systemdsystemctl start nginxsystemctl reload nginxsystemctl stop nginx
Directnginxnginx -s reloadnginx -s stop
Docker/Containernginx -g 'daemon off;'nginx -s reloadnginx -s quit

Important: Always test configuration before starting/reloading:

nginx -t

Verification Strategies

Basic Functionality

curl -s http://localhost:<port>/
curl -s -o /dev/null -w "%{http_code}" http://localhost:<port>/nonexistent

Rate Limiting Verification

Rate limiting requires concurrent requests to trigger. Sequential requests will not exceed the rate limit.

Correct approach (parallel requests):

seq 20 | xargs -P 20 -I {} curl -s -o /dev/null -w "%{http_code}\n" http://localhost:<port>/

Incorrect approach (will not trigger rate limiting):

for i in {1..20}; do curl -s http://localhost:<port>/; done  # Too slow, sequential

Log Verification

tail -f /var/log/nginx/access.log
tail -f /var/log/nginx/error.log

Common Pitfalls

  1. Log format not found: Log format must be defined in nginx.conf before being referenced in server blocks
  2. Rate limiting not triggering: Sequential requests are too slow; use parallel requests with xargs -P or similar
  3. Configuration syntax errors: Always run nginx -t before starting or reloading
  4. Port already in use: Check with ss -tlnp before configuring a new port
  5. systemctl not available: In containers or minimal environments, use nginx command directly
  6. Default site conflicts: Remove or disable default site configuration when creating custom configurations: rm -f /etc/nginx/sites-enabled/default
  7. Missing directories: Verify required directories exist before writing configuration: ls -la /etc/nginx/conf.d/

Execution Efficiency

  • Batch file operations: Create multiple static files (index.html, 404.html, etc.) in parallel when possible
  • Combine verification steps: Test multiple endpoints in a single verification pass
  • Plan verification upfront: Determine the testing strategy before implementation
  • Use idempotent commands: Prefer mkdir -p, rm -f to handle existing/missing files gracefully

Example Workflow

  1. Check system state (Nginx installed, running, port availability)
  2. Read existing nginx.conf structure
  3. Backup configuration
  4. Create required directories and static content
  5. Modify nginx.conf for global settings (log format, rate limiting zone)
  6. Create server configuration in conf.d/
  7. Remove conflicting default configurations
  8. Test configuration with nginx -t
  9. Start/reload Nginx service
  10. Verify all functionality (main page, error pages, rate limiting, logs)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

27.73%
按下载量换算96

Claude Code

22.37%
按下载量换算78

Gemini CLI

17.69%
按下载量换算61

windsurf

12.5%
按下载量换算43

OpenCode

6.57%
按下载量换算23

Codex

3.19%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills