Skip to content

Commit 75c2f49

Browse files
authored
fix: Add missing ErrorReportValve to default server.xml #1047 (#1047)
1 parent a228922 commit 75c2f49

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/main/charts/confluence/templates/configmap-server-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ data:
4848
defaultHost="localhost"
4949
debug="0">
5050
<Host name="localhost"
51+
<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />
5152
debug="0"
5253
appBase="webapps"
5354
unpackWARs="true"

src/main/charts/crowd/templates/configmap-server-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ data:
4747
defaultHost="localhost">
4848

4949
<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
50+
<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />
5051
<Context path="{{ .Values.crowd.service.contextPath | default "/crowd" }}" docBase="../../crowd-webapp" debug="0">
5152
<Manager pathname="" />
5253
</Context>

src/main/charts/jira/templates/configmap-server-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ data:
6666
appBase="webapps"
6767
unpackWARs="true"
6868
autoDeploy="true">
69-
69+
<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />
7070
<Context path="{{ .Values.jira.service.contextPath | default "" }}"
7171
docBase="${catalina.home}/atlassian-jira"
7272
reloadable="false"

0 commit comments

Comments
 (0)