Skip to content

Commit

Permalink
leniency for old jsps.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Feb 20, 2025
1 parent a2c9c7c commit b3d7d2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ WORKDIR $CATALINA_BASE
# - netcat: just for debugging. 'nc'.
# - apache2-utils: we use rotatelogs to rotate catalina.out
# - file: used by mediatools, generally useful
# - unzip: to unzip the ware in on build
# - unzip: to unzip the war on build

COPY eu-central-1-bundle.pem /tmp
COPY importcerts.sh /tmp
Expand All @@ -72,7 +72,7 @@ RUN set -eux && \
apt-get -y install less ncal procps curl rsync dnsutils netcat apache2-utils vim-tiny psmisc inotify-tools gawk file unzip && \
rm -rf /var/lib/apt/lists/* && \
mkdir -p /conf && \
chmod 775 /conf
chmod 755 /conf


# Have a workable shell
Expand Down
3 changes: 3 additions & 0 deletions catalina_base/bin/setenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ if [ "$ENVIRONMENT" == "test" ] ; then
CATALINA_OPTS="$CATALINA_OPTS -ea"
fi

# mmbase sometimes
export CATALINA_OPTS="$CATALINA_OPTS -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true"


# JPDA debugger is arranged in catalina.sh
export JPDA_ADDRESS=8000
Expand Down

0 comments on commit b3d7d2b

Please sign in to comment.