You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2022/04/20 21:17:08 UTC

[tika] branch TIKA-3719 updated: TIKA-3719 -- try to add trust store and fix new unit test :P

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch TIKA-3719
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/TIKA-3719 by this push:
     new 2824afc9b TIKA-3719 -- try to add trust store and fix new unit test :P
2824afc9b is described below

commit 2824afc9b36f15c2e2a3a0a691f187aee0a03785
Author: tallison <ta...@apache.org>
AuthorDate: Wed Apr 20 17:16:59 2022 -0400

    TIKA-3719 -- try to add trust store and fix new unit test :P
---
 .../src/test/resources/configs/tika-config-server-tls.xml            | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tika-server/tika-server-core/src/test/resources/configs/tika-config-server-tls.xml b/tika-server/tika-server-core/src/test/resources/configs/tika-config-server-tls.xml
index fdd90eb76..a5186eec3 100644
--- a/tika-server/tika-server-core/src/test/resources/configs/tika-config-server-tls.xml
+++ b/tika-server/tika-server-core/src/test/resources/configs/tika-config-server-tls.xml
@@ -34,6 +34,11 @@
       <params>
         <active>true</active>
         <keyStoreType>myType</keyStoreType>
+        <keyStorePassword>pass</keyStorePassword>
+        <keyStoreFile>/something/or/other</keyStoreFile>
+        <trustStoreType>myType2</trustStoreType>
+        <trustStorePassword>pass2</trustStorePassword>
+        <trustStoreFile>/something/or/other2</trustStoreFile>
       </params>
     </tlsConfig>
   </server>