Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for S3_ENDPOINT (4.64 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java

     * The bucket name and object name are extracted from the URL.
     * </p>
     *
     * <p>
     * The handler relies on environment variables for configuration:
     * </p>
     * <ul>
     *   <li>{@code S3_ENDPOINT}: The endpoint URL of the S3 service.</li>
     *   <li>{@code S3_ACCESS_KEY}: The access key for authentication.</li>
     *   <li>{@code S3_SECRET_KEY}: The secret key for authentication.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

            if (StringUtil.isBlank(endpoint)) {
                throw new CrawlingAccessException(
                        "S3 endpoint is blank. Please set the S3_ENDPOINT environment variable or endpoint parameter.");
            }
            final String accessKey = getInitParameter("accessKey", null, String.class);
            if (StringUtil.isBlank(accessKey)) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (0)
Back to top