Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,16 @@ parts.push(`
log {
output stdout
}

# skip logs for health check
skip_log /api/v1/health

# skip logs for sourcemap files
@source-map-files {
path_regexp ^.*\.(js|css)\.map$
}
skip_log @source-map-files

# The internal request ID header should never be accepted from an incoming request.
request_header -X-Appsmith-Request-Id

Expand Down Expand Up @@ -110,7 +118,6 @@ parts.push(`
@file file
handle @file {
import file_server
skip_log
}

handle /static/* {
Expand Down