Last active
August 8, 2024 22:12
-
-
Save isapir/e00d7174251c88529c2dfc5e898fb8dc to your computer and use it in GitHub Desktop.
Lucee Configuration Files for Tomcat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: set the path to Tomcat binaries | |
:: set CATALINA_HOME=C:\Apps\tomcat\apache-tomcat-9.0.11 | |
:: set the path to the instance config, i.e. current directory if this file is in the CATALINA_BASE directory | |
set CATALINA_BASE=%CD% | |
:: set title to the last part of the current directory | |
for %%f in (%CD%) do set CUR_DIR=%%~nxf | |
title %CUR_DIR% | |
set EXECUTABLE=%CATALINA_HOME%\bin\catalina.bat | |
call %EXECUTABLE% run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set the path to Tomcat binaries | |
export CATALINA_HOME=/opt/tomcat/apache-tomcat-9.0.11 | |
# set the path to the instance config, i.e. current directory if this file is in the CATALINA_BASE directory | |
export CATALINA_BASE=/opt/lucee/lucee-8080 | |
EXECUTABLE=${CATALINA_HOME}/bin/catalina.sh | |
exec $EXECUTABLE run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee | |
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" | |
version="4.0"> | |
<!-- ===================================================================== --> | |
<!-- Lucee CFML Servlet - this is the main Lucee servlet --> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<servlet id="Lucee"> | |
<description>Lucee CFML Engine</description> | |
<servlet-name>CFMLServlet</servlet-name> | |
<servlet-class>lucee.loader.servlet.CFMLServlet</servlet-class> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<!-- to specify the location of the Lucee Server config and libraries, --> | |
<!-- uncomment the init-param below. make sure that the param-value --> | |
<!-- points to a valid folder, and that the process that runs Lucee has --> | |
<!-- write permissions to that folder. leave commented for defaults. --> | |
<!-- | |
<init-param> | |
<param-name>lucee-server-root</param-name> | |
<param-value>/var/Lucee/config/server/</param-value> | |
<description>Lucee Server configuration directory (for Server-wide configurations, settings, and libraries)</description> | |
</init-param> | |
!--> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<!-- to specify the location of the Web Contexts' config and libraries, --> | |
<!-- uncomment the init-param below. make sure that the param-value --> | |
<!-- points to a valid folder, and that the process that runs Lucee has --> | |
<!-- write permissions to that folder. the {web-context-label} can be --> | |
<!-- set in Lucee Server Admin homepage. leave commented for defaults. --> | |
<!-- | |
<init-param> | |
<param-name>lucee-web-directory</param-name> | |
<param-value>/var/Lucee/config/web/{web-context-label}/</param-value> | |
<description>Lucee Web Directory (for Website-specific configurations, settings, and libraries)</description> | |
</init-param> | |
!--> | |
<load-on-startup>1</load-on-startup> | |
</servlet> | |
<servlet-mapping> | |
<servlet-name>CFMLServlet</servlet-name> | |
<url-pattern>*.cfc</url-pattern> | |
<url-pattern>*.cfm</url-pattern> | |
<url-pattern>*.cfml</url-pattern> | |
<url-pattern>*.cfs</url-pattern> | |
</servlet-mapping> | |
<!-- ===================================================================== --> | |
<!-- Lucee REST Servlet - handles Lucee's RESTful web services --> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<servlet id="LuceeREST"> | |
<description>Lucee Servlet for RESTful services</description> | |
<servlet-name>RESTServlet</servlet-name> | |
<servlet-class>lucee.loader.servlet.RestServlet</servlet-class> | |
<load-on-startup>2</load-on-startup> | |
</servlet> | |
<servlet-mapping> | |
<servlet-name>RESTServlet</servlet-name> | |
<url-pattern>/rest/*</url-pattern> | |
</servlet-mapping> | |
<!-- ==================== Default Welcome File List ===================== --> | |
<!-- When a request URI refers to a directory, the default servlet looks --> | |
<!-- for a "welcome file" within that directory and, if present, to the --> | |
<!-- corresponding resource URI for display. --> | |
<!-- If no welcome files are present, the default servlet either serves a --> | |
<!-- directory listing (see default servlet configuration on how to --> | |
<!-- customize) or returns a 404 status, depending on the value of the --> | |
<!-- listings setting. --> | |
<!-- --> | |
<!-- If you define welcome files in your own application's web.xml --> | |
<!-- deployment descriptor, that list *replaces* the list configured --> | |
<!-- here, so be sure to include any of the default values that you wish --> | |
<!-- to use within your application. --> | |
<welcome-file-list> | |
<welcome-file>index.cfm</welcome-file> | |
<welcome-file>index.html</welcome-file> | |
<welcome-file>index.htm</welcome-file> | |
<welcome-file>index.jsp</welcome-file> | |
</welcome-file-list> | |
<!-- ===================================================================== --> | |
<!-- Override settings for Tomcat's default Servlet if needed --> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- ===================================================================== --> | |
<!-- Override settings for Tomcat's default Servlet if needed --> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<servlet> | |
<servlet-name>default</servlet-name> | |
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> | |
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
<!-- Change the param-value to true to enable Directory Listings when --> | |
<!-- a Welcome page, e.g. index.cfm, is not available. --> | |
<init-param> | |
<param-name>listings</param-name> | |
<param-value>false</param-value> | |
</init-param> | |
</servlet> | |
<!-- The mapping for the default servlet for static resources --> | |
<servlet-mapping> | |
<servlet-name>default</servlet-name> | |
<url-pattern>/</url-pattern> | |
</servlet-mapping> | |
</web-app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment