Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for whiteList (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/js/admin/bootstrap.min.js.map

    }\n  }\n\n  return false\n}\n\nexport function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {\n  if (unsafeHtml.length === 0) {\n    return unsafeHtml\n  }\n\n  if (sanitizeFn && typeof sanitizeFn === 'function') {\n    return sanitizeFn(unsafeHtml)\n  }\n\n  const domParser = new window.DOMParser()\n  const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html')\n  const whitelistKeys = Object.keys(whiteList)\n  const elements = [].slice.call(createdDocument.body.querySelectorAll('*'))\n\n...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 180.9K bytes
    - Click Count (0)
  2. src/main/resources/fess_config.properties

    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=
    # Comma-separated list of trusted proxy IPs. Only trust X-Forwarded-For/X-Real-IP from these IPs.
    rate.limit.trusted.proxies=127.0.0.1,::1
    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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String RATE_LIMIT_RETRY_AFTER_SECONDS = "rate.limit.retry.after.seconds";
    
        /** The key of the configuration. e.g. 127.0.0.1,::1 */
        String RATE_LIMIT_WHITELIST_IPS = "rate.limit.whitelist.ips";
    
        /** The key of the configuration. e.g.  */
        String RATE_LIMIT_BLOCKED_IPS = "rate.limit.blocked.ips";
    
        /** The key of the configuration. e.g. 127.0.0.1,::1 */
    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)
Back to Top