Add basic 404 page

master
Raymonzut 4 years ago
parent fb5fc2ede2
commit cf1ef4257c
No known key found for this signature in database
GPG Key ID: 1E9BCC39EDD1DD53
  1. 5
      client/nginx.conf
  2. 10
      client/public/error/404.html

@ -26,6 +26,11 @@ http {
alias /app/assets/styling;
}
error_page 404 /404.html;
location = /404.html {
root /app/error;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>404</title>
</head>
<body>
This page could not be found, sorry for the inconvenience
</body>
</html>
Loading…
Cancel
Save