Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 331 for tomcat (0.2 sec)

  1. src/main/assemblies/files/tomcat_config.properties

    # ----------------------------------------------------------
    #                                                     Tomcat
    #                                                     ------
    tomcat.URIEncoding = UTF-8
    tomcat.useBodyEncodingForURI = true
    #tomcat.secure=false
    #tomcat.scheme=http
    #tomcat.bindAddress=127.0.0.1
    #tomcat.proxyPort=
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Aug 11 21:43:37 GMT 2018
    - 639 bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/FessBoot.java

    import org.apache.catalina.startup.Tomcat;
    import org.apache.tomcat.util.http.CookieProcessorBase;
    import org.apache.tomcat.util.http.Rfc6265CookieProcessor;
    import org.apache.tomcat.util.net.SSLHostConfig;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.tomcat.valve.SuppressErrorReportValve;
    import org.codelibs.fess.tomcat.webresources.FessWebResourceRoot;
    import org.dbflute.tomcat.TomcatBoot;
    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)
  3. pom.xml

    		</dependency>
    
    		<!-- Tomcat -->
    		<dependency>
    			<groupId>org.dbflute.tomcat</groupId>
    			<artifactId>tomcat-boot</artifactId>
    			<version>${tomcat.boot.version}</version>
    			<!-- Disable scope at development on IDEA -->
    			<scope>provided</scope>
    			<exclusions>
    				<exclusion>
    					<groupId>org.apache.tomcat</groupId>
    					<artifactId>tomcat-el-api</artifactId>
    				</exclusion>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/main/assemblies/common-bin.xml

    		<!-- lib -->
    		<fileSet>
    			<directory>${project.build.directory}/tomcat-lib</directory>
    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    		</fileSet>
    		<fileSet>
    			<directory>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/</directory>
    			<includes>
    				<include>FessBoot**</include>
    				<include>tomcat/**</include>
    			</includes>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 02:29:43 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  5. .gitignore

    /src/main/webapp/WEB-INF/conf/*.properties
    /src/main/webapp/WEB-INF/db/*.lock.db
    /src/main/webapp/WEB-INF/logs/fess*
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    dbflute_fess/output/doc/lastadoc-fess.html
    dbflute_fess/schema/project-lastadoc-fess.json
    src/main/resources/fess_indices/fess_config.access_token/access_token.bulk
    src/main/resources/ga_client_secrets.p12
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 01:48:33 GMT 2022
    - 983 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.tomcat.webresources;
    
    import java.util.jar.Attributes;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    import org.apache.catalina.Context;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValve.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.tomcat.valve;
    
    import org.apache.catalina.valves.ErrorReportValve;
    
    public class SuppressErrorReportValve extends ErrorReportValve {
        public SuppressErrorReportValve() {
            setShowReport(false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 891 bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/conf/settings.xml

       | specific paths and repository locations which allow the build to work in the local environment.
       |
       | For example, if you have an integration testing plugin - like cactus - that needs to know where
       | your Tomcat instance is installed, you can provide a variable here such that the variable is
       | dereferenced during the build process to configure the cactus plugin.
       |
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  9. src/main/assemblies/files/fess.in.bat

    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.log.path=%FESS_HOME%\logs
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.log.level=warn
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dlasta.env=web
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dtomcat.config.path=tomcat_config.properties
    
    REM External opensearch cluster
    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.search_engine.http_address=http://localhost:9200
    Batch File
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/main/assemblies/files/fess.in.sh

    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.log.path=$FESS_LOG_PATH"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.log.level=$FESS_LOG_LEVEL"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlasta.env=web"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dtomcat.config.path=tomcat_config.properties"
    if [ "x$FESS_CONF_PATH" != "x" ]; then
      FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.conf.path=$FESS_CONF_PATH"
    fi
    if [ "x$FESS_VAR_PATH" != "x" ]; then
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top