From 47d4c8c5933b8a2571d5aa85d20a13f3068caf23 Mon Sep 17 00:00:00 2001 From: Kim Pepper Date: Fri, 30 Jan 2026 09:40:44 +1100 Subject: [PATCH] feat: Add support for a static llms.txt file --- base/etc/nginx/conf.d/location/10-llms.conf | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 base/etc/nginx/conf.d/location/10-llms.conf diff --git a/base/etc/nginx/conf.d/location/10-llms.conf b/base/etc/nginx/conf.d/location/10-llms.conf new file mode 100644 index 0000000..b8dd732 --- /dev/null +++ b/base/etc/nginx/conf.d/location/10-llms.conf @@ -0,0 +1,5 @@ +location = /llms.txt { + allow all; + log_not_found off; + access_log off; +}