add custom 404 page

This commit is contained in:
Lee
2024-01-11 05:44:41 +00:00
parent c2219d60b9
commit 9d7ccbda40
4 changed files with 92 additions and 0 deletions

View File

@ -63,5 +63,11 @@ http {
# Serve the file directly from disk
try_files $uri $uri/ =404;
}
# Fallback 404 page
location = /404.html {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
}
}