Skip to content
Snippets Groups Projects
Commit 43fb3580 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Merge branch 'remove-obsolete-config' into 'master'

Remove obsolete config

See merge request !56
parents 3d973da4 c46b2411
1 merge request!56Remove obsolete config
Pipeline #8139 passed with stages
in 3 minutes and 45 seconds
...@@ -70,32 +70,6 @@ ...@@ -70,32 +70,6 @@
<url-pattern>/*</url-pattern> <url-pattern>/*</url-pattern>
</filter-mapping> </filter-mapping>
<mime-mapping>
<extension>manifest</extension>
<mime-type>text/cache-manifest</mime-type>
</mime-mapping>
<mime-mapping>
<extension>json</extension>
<mime-type>application/json</mime-type>
</mime-mapping>
<error-page>
<error-code>401</error-code>
<location>/error/401.html</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/error/403.html</location>
</error-page>
<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>
<session-config> <session-config>
<tracking-mode>COOKIE</tracking-mode> <tracking-mode>COOKIE</tracking-mode>
</session-config> </session-config>
......
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<link href="error/error.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<h1>401 - UNAUTORIZED</h1>
<p>
Sorry, you must be authorized to request this resource
</p>
</article>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<link href="error/error.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<h1>403 - FORBIDDEN</h1>
<p>
Sorry, you are not allowed to request this resource
</p>
</article>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<link href="error/error.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<h1>404 - NOT FOUND</h1>
<p>
Sorry, the resource you are requesting could not be found
</p>
</article>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<link href="error/error.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<h1>500 - INTERNAL SERVER ERROR</h1>
<p>
Sorry, this should not happen.
</p>
</article>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Not Found</title>
<link href="error/error.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<h1>503 - SERVICE UNAVAILABLE</h1>
<p>
Sorry, this should not happen.
</p>
</article>
</body>
</html>
@CHARSET "UTF-8";
body {
background: #eee;
}
article {
background: white url(thm-logo.png) no-repeat 16px 98%;
margin: 16px;
padding: 48px 16px;
border-radius: 4px;
box-shadow: 0 1px 2px #ccc;
text-align: center;
font-weight: bold;
}
article > h1 {
background: url(logo_128.png) no-repeat 50% top;
padding: 140px 48px 48px 48px;
color: #800000;
text-shadow: 0 1px 0 white, 0 2px 1px #ccc;
}
src/main/webapp/error/logo_128.png

7.94 KiB

src/main/webapp/error/thm-logo.png

3.23 KiB

0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment