fiddy/docker/nginx/npm/location-auth-advanced.conf.example
Nico f8e426542d
Some checks failed
Build & Deploy Fiddy (Dokploy) / build (push) Has been cancelled
Build & Deploy Fiddy (Dokploy) / deploy (push) Has been cancelled
feat: implement schedules pivot, scheduler service, and dokploy deploy flow
2026-02-15 17:10:58 -08:00

13 lines
424 B
Plaintext

# Paste into NPM Custom Location advanced config for:
# - /api/auth/login
# - /api/auth/register
#
# Requires `limit_req_zone fiddy_auth` in http context.
# Keep request-id forwarding/header here too because this location is
# more specific than `/` and can bypass root location directives.
add_header X-Request-Id $request_id always;
proxy_set_header X-Request-Id $request_id;
limit_req zone=fiddy_auth burst=15 nodelay;