From 96da2b9f1f2669f93cec32d8517dc6e60f91b6bf Mon Sep 17 00:00:00 2001 From: Tobias Klausmann Date: Fri, 3 Apr 2026 18:15:03 +0000 Subject: [PATCH] .gitignore: add public/.well-known directory (#1335) RFC 5785 defines /.well-known/ as the prefix for "well-known locations" in URIs. This prefix is used for example by Certbot/Let's Encrypt to request SSL certificates. PartDB doesn't need to care about this directory, but also should not see its existence as the git tree being "dirty". --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dd5c43db..176b36e3 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,10 @@ uploads/* !uploads/.keep +# Some people use Certbot or similar tools to make SSL certificates. +# Also see https://www.rfc-editor.org/rfc/rfc5785 +public/.well-known/ + # Do not keep cache files .php_cs.cache .phpcs-cache @@ -50,4 +54,4 @@ phpstan.neon ###< phpstan/phpstan ### .claude/ -CLAUDE.md \ No newline at end of file +CLAUDE.md