Skip to content

enh: Suppress logging for ACME challenge requests in nginx configs #112

@nfebe

Description

@nfebe

Context

From PR #109 review.

ACME challenge requests generate noise in nginx access/error logs, especially 404s for challenges that have been cleaned up. These should be suppressed.

Locations

  • internal/nginx/manager.go — all 6 ACME challenge location blocks in templates
  • templates/infra/nginx/default.conf — default server ACME challenge location

Expected

Add logging suppression to all ACME challenge locations:

location /.well-known/acme-challenge/ {
    root /usr/share/nginx/html;
    access_log off;
    log_not_found off;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions