gavinbaumanis
11/05/2023, 2:37 AMAlan
12/14/2023, 2:53 PMcf-migrations
box migrate up
not having much luck finding info on it
Component [commandbox.modules.commandbox-migrations.commands.migrate.up] has no accessible Member with name [SQLHIGHLIGHTER]
chapmandu
01/24/2024, 1:30 AM{
"name": "myapp",
"jvm": {
"args": [
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:9999",
"-javaagent:/app/lib/luceedebug.jar=jdwpHost=localhost,jdwpPort=9999,debugHost=0.0.0.0,debugPort=10000,jarPath=/app/lib/luceedebug.jar"
]
}
}
AFTER: docker-compose.yml
services:
myapp:
image: myapp_commandbox-alpine
build:
context: .
dockerfile: ./docker/commandbox/myapp/Dockerfile
environment:
ENVIRONMENT: "development"
# commandbox settings
BOX_SERVER_JVM_ARGS: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:9999 -javaagent:/app/lib/luceedebug.jar=jdwpHost=localhost,jdwpPort=9999,debugHost=0.0.0.0,debugPort=10000,jarPath=/app/lib/luceedebug.jar"
I can see the BOX_SERVER_JVM_ARGS are loaded by commandbox...
| √ | Overriding server.json values from env vars
| |----------------------------------------------------------
| | Overridding [JVM.ARGS] with OS environment variable [BOX_SERVER_JVM_A
| | RGS
But I'm expecting to see the output below, but there is no reference to luceedebug at all:
Listening for transport dt_socket at address: 9999
[luceedebug] fs is case sensitive: true
[luceedebug] agent premain complete
...
CommandBox 5.8.0+00695gavinbaumanis
01/24/2024, 2:14 AMSeth Feldkamp
01/29/2024, 3:30 PMDean
03/13/2024, 9:25 PMgavinbaumanis
03/20/2024, 11:58 AMgavinbaumanis
03/20/2024, 11:59 AMJim Priest
04/03/2024, 11:49 PMenvironment:
CFPM_INSTALL: websocket
steveduke
04/11/2024, 12:18 PM<servlet-mapping>
<servlet-name>CFMLServlet</servlet-name>
<url-pattern>*.cfc</url-pattern>
<url-pattern>*.cfm</url-pattern>
<url-pattern>*.cfml</url-pattern>
<url-pattern>*.html</url-pattern>
<url-pattern>/index.cfc/*</url-pattern>
<url-pattern>/index.cfm/*</url-pattern>
<url-pattern>/index.cfml/*</url-pattern>
<url-pattern>/index.html/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>RESTServlet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<!-- default file to execute if directory is called with no file name, e.g. <http://mysite.com/> !-->
<welcome-file-list>
<welcome-file>index.cfm</welcome-file>
<welcome-file>index.lucee</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
Is this possible with undertow?
Thanks.Tim Badolato
04/26/2024, 6:17 PMortussolutions/commandbox:lucee5-3.7.12
for my server but when I run @foundeo's scan I get the following security issues. Are these issues addressed in newer images or are there any plans to fix them? Thanks!gavinbaumanis
05/02/2024, 10:54 AMbox server restart
but the container "ends" when the server stops running.
Thanks!birdy1980
05/07/2024, 9:56 AMbhartsfield
05/07/2024, 8:26 PMgavinbaumanis
05/09/2024, 2:24 AMCory Howitz
06/06/2024, 8:36 PMgavinbaumanis
06/14/2024, 1:00 AMbirdy1980
07/10/2024, 10:18 AMlmajano
07/10/2024, 2:15 PMbirdy1980
08/15/2024, 8:32 AMDaniel Mejia
08/17/2024, 1:59 AMbirdy1980
09/26/2024, 8:42 AMcfengineers
10/08/2024, 8:07 PMcfengineers
10/08/2024, 8:27 PMmjhagen
dougcain
03/05/2025, 2:11 PMdougcain
03/11/2025, 11:45 AMprofile:production
blocks CFIDE, if I switch to the server rules I can access CFIDE. Adding "blockCFAdmin":"external"
to server.json when running the server rules also blocks CFIDE as expected.
So it seems that profile:production
doesn't work as expected with the server rules, has anyone else seen this?dougcain
03/11/2025, 3:17 PM"blockCFAdmin":"true"
isn't working in server.json when using server rules as I initially thought.
Using block-cf-admin()
with server rules does block CFIDE with a 404.dougcain
03/11/2025, 4:12 PMalholden
03/14/2025, 7:52 PM