Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for blockIp (0.04 seconds)

  1. src/main/resources/fess_config.properties

    rate.limit.window.ms=60000
    # Duration in milliseconds to block IP when limit exceeded.
    rate.limit.block.duration.ms=300000
    # Retry-After header value in seconds.
    rate.limit.retry.after.seconds=60
    # Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1).
    rate.limit.whitelist.ips=127.0.0.1,::1
    # Comma-separated list of blocked IPs.
    rate.limit.blocked.ips=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'rate.limit.blocked.ips'. <br>
         * The value is, e.g.  <br>
         * comment: Comma-separated list of blocked IPs.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitBlockedIps();
    
        /**
         * Get the value for the key 'rate.limit.blocked.ips' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  3. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.aliasCount = 2;
    
            final boolean result = testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            assertTrue(result);
            // With loadBulkData=false, the bulk data loading block is skipped entirely
            assertEquals(0, testClient.insertBulkDataCalls.size());
        }
    
        // ==========================================================================
        // reindexConfigIndices - index filtering
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
Back to Top