From fb36069f1c1a729c4ecf5a48e7bccef9c2a9817c Mon Sep 17 00:00:00 2001 From: -LAN- Date: Sun, 24 Aug 2025 05:27:08 +0800 Subject: [PATCH] chore: consolidate gitignore rules to root .gitignore - Move docker/ssrf_proxy/conf.d/ ignore rule to root .gitignore - Remove redundant docker/ssrf_proxy/.gitignore file - Keep all gitignore rules in a single location for better maintainability --- .gitignore | 3 +++ docker/ssrf_proxy/.gitignore | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 docker/ssrf_proxy/.gitignore diff --git a/.gitignore b/.gitignore index 30432c4302..75a52e81b9 100644 --- a/.gitignore +++ b/.gitignore @@ -218,3 +218,6 @@ mise.toml .roo/ api/.env.backup /clickzetta + +# SSRF Proxy - ignore the conf.d directory that's created for testing/local overrides +docker/ssrf_proxy/conf.d/ diff --git a/docker/ssrf_proxy/.gitignore b/docker/ssrf_proxy/.gitignore deleted file mode 100644 index 77670ea12d..0000000000 --- a/docker/ssrf_proxy/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Ignore the conf.d directory that's created for testing/local overrides -conf.d/ \ No newline at end of file