Skip to content

Commit

Permalink
[ALS-5053] Add error pages to web.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Oct 7, 2023
1 parent ffeac44 commit 8119d45
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions war/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,12 @@
<http-only>true</http-only>
</cookie-config>
</session-config>
<error-page>
<error-code>404</error-code>
<location>/error-404.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error-500.html</location>
</error-page>
</web-app>

0 comments on commit 8119d45

Please sign in to comment.