From e6dc1845ecb71b26b53d7bfa347330588bb5f2bf Mon Sep 17 00:00:00 2001 From: David Glick Date: Thu, 11 Dec 2025 10:44:34 -0800 Subject: [PATCH 1/2] Update instructions for overriding Tika server URL Fixed the method to override Tika server URL in Solr configuration. --- docs/docs/how-to-guides/upgrade-cve-2025-66516.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how-to-guides/upgrade-cve-2025-66516.md b/docs/docs/how-to-guides/upgrade-cve-2025-66516.md index 7640dae..6a4e4ad 100644 --- a/docs/docs/how-to-guides/upgrade-cve-2025-66516.md +++ b/docs/docs/how-to-guides/upgrade-cve-2025-66516.md @@ -37,7 +37,7 @@ Then pull the new `ghcr.io/kitconcept/solr` image and restart your services. The - Configuration to use an external Tika 3.2.3 server (patched against CVE-2025-66516) By default, Solr will connect to the Tika server at `http://tika:9998`. -You can override this using the `solr.tika.url` environment variable. +You can override this using the `solr.tika.url` option, which can be passed to Solr using the SOLR_OPTS environment variable, like this: `SOLR_OPTS="-Dsolr.tika.url=http://tika-acceptance:9998"`. ## Users with Custom Solr Images From c88bed5625e62ae632ce6f8d5b27f5038fa3afe9 Mon Sep 17 00:00:00 2001 From: David Glick Date: Thu, 11 Dec 2025 10:45:40 -0800 Subject: [PATCH 2/2] Fix documentation for configuring Tika URL --- news/+tika.documentation | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/+tika.documentation diff --git a/news/+tika.documentation b/news/+tika.documentation new file mode 100644 index 0000000..edae86c --- /dev/null +++ b/news/+tika.documentation @@ -0,0 +1 @@ +Fix docs for configuring Tika URL. @davisagli