Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 9600 (0.3 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

                defaultMap.put(FessConfig.API_CORS_ALLOW_ORIGIN, "*");
                defaultMap.put(FessConfig.API_CORS_ALLOW_METHODS, "GET, POST, OPTIONS, DELETE, PUT");
                defaultMap.put(FessConfig.API_CORS_MAX_AGE, "3600");
                defaultMap.put(FessConfig.API_CORS_ALLOW_HEADERS, "Origin, Content-Type, Accept, Authorization, X-Requested-With");
                defaultMap.put(FessConfig.API_CORS_ALLOW_CREDENTIALS, "true");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        }
    
        protected long getStateTtl() {
            return Long.parseLong(ComponentUtil.getFessConfig().getSystemProperty(AZUREAD_STATE_TTL, "3600"));
        }
    
        protected String getReplyUrl(final HttpServletRequest request) {
            final String value = ComponentUtil.getFessConfig().getSystemProperty(AZUREAD_REPLY_URL, StringUtil.EMPTY);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        }
                    });
                    runner.build(config);
    
                    final int port = runner.node().settings().getAsInt("http.port", 9200);
                    httpAddress = "http://localhost:" + port;
                    logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use.");
                    break;
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    api.gsa.response.headers=
    api.gsa.response.exception.included=false
    api.dashboard.response.headers=
    api.cors.allow.origin=*
    api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT
    api.cors.max.age=3600
    api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With
    api.cors.allow.credentials=true
    api.jsonp.enabled=false
    api.ping.search_engine.fields=status,timed_out
    
    
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
Back to top