Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Lockyer (0.22 sec)

  1. README.md

        $ ./bin/fess
    
    For more details, see the [Installation Guide](https://fess.codelibs.org/14.12/install/index.html).
    
    ### Docker
    
    We provide Docker images on [ghcr.io](https://github.com/orgs/codelibs/packages). We also provide a Docker Compose (YAML) file in [this repository](https://github.com/codelibs/docker-fess/tree/master/compose). 
    
    ### Browser UI
    
    - Search UI: http://localhost:8080/
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ResourceUtil.java

    public class ResourceUtil {
        private static final String FESS_OVERRIDE_CONF_PATH = "FESS_OVERRIDE_CONF_PATH";
    
        private static final String FESS_APP_TYPE = "FESS_APP_TYPE";
    
        private static final String FESS_APP_DOCKER = "docker";
    
        protected ResourceUtil() {
            // nothing
        }
    
        public static String getFesenHttpUrl() {
            final String url = SystemUtil.getSearchEngineHttpAddress();
            if (url != null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            logger = LogManager.getLogger(loggerName);
            final String logFormat = ComponentUtil.getFessConfig().getAppAuditLogFormat();
            if (StringUtil.isBlank(logFormat)) {
                useEcsFormat = "docker".equals(System.getenv("FESS_APP_TYPE"));
            } else if ("ecs".equals(logFormat)) {
                useEcsFormat = true;
            }
        }
    
        public void login(final OptionalThing<FessUserBean> user) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. README.fr.md

    Pour plus de détails, consultez le [guide d'installation](https://fess.codelibs.org/14.6/install/index.html).
    
    ### Docker
    
    Nous fournissions des images docker sur [ghcr.io](https://github.com/orgs/codelibs/packages).
    Nous proposons aussi un fichier Docker Compose (YAML) dans [ce repository](https://github.com/codelibs/docker-fess/tree/master/compose).
    
    ### Interfaces Web
    
    - Interface de recherche : http://localhost:8080/
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
Back to top