- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for certificate_authorities (0.52 sec)
-
src/main/java/org/codelibs/fess/helper/CurlHelper.java
final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities(); if (StringUtil.isNotBlank(authorities)) { if (logger.isDebugEnabled()) { logger.debug("Loading certificate_authorities: path={}", authorities); } try (final InputStream in = new FileInputStream(authorities)) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java
} final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities(); if (StringUtil.isNotBlank(authorities)) { builder.put("http.ssl.certificate_authorities", authorities); } return new HttpClient(builder.build(), null); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final String value = getSearchEngineHttpSslCertificateAuthorities(); if (value != null) { return value; } return get("elasticsearch.http.ssl.certificate_authorities"); } String getSearchEngineUsername(); default String getFesenUsername() { final String value = getSearchEngineUsername(); if (value != null) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201) search_engine.http.url=http://localhost:9201 # Path to SSL certificate authorities for secure HTTP connections. search_engine.http.ssl.certificate_authorities= # Username for authenticating to the search engine. search_engine.username= # Password for authenticating to the search engine. search_engine.password= # Interval (ms) for heartbeat checks to the search engine.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities(); if (StringUtil.isNotBlank(authorities)) { builder.put("http.ssl.certificate_authorities", authorities); } return new HttpClient(builder.build(), null); } /** * Checks if an index exists in the search engine. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String search_engine_HTTP_URL = "search_engine.http.url"; /** The key of the configuration. e.g. */ String search_engine_HTTP_SSL_certificate_authorities = "search_engine.http.ssl.certificate_authorities"; /** The key of the configuration. e.g. */ String search_engine_USERNAME = "search_engine.username"; /** The key of the configuration. e.g. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)