From 34f11e4caf3750411279e6fc877ec446301f07c8 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Sun, 31 May 2026 17:21:18 -0500 Subject: [PATCH] Remove example config --- config.example.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 config.example.yaml diff --git a/config.example.yaml b/config.example.yaml deleted file mode 100644 index 000fe68..0000000 --- a/config.example.yaml +++ /dev/null @@ -1,24 +0,0 @@ -server: - # Bind locally by default; change as needed for LAN/public access. - listen_addr: "127.0.0.1:8080" - -limits: - # Conservative default limits suitable for small scratch usage. - max_upload_size: "5MB" - default_ttl: "30m" - -storage: - # Directory used for scratch files + metadata index. - data_dir: "./data" - cleanup_interval: "30s" - -security: - # Empty means all source IPs can write. - # Add explicit IPs/CIDRs to lock down POST /api/scratch. - allowed_ips: [] - trust_proxy_headers: false - - rate_limit: - enabled: true - requests_per_minute: 20 - burst: 5