feat: Display index for 404 page
All checks were successful
Build Docker / Build Docker (push) Successful in 22s

This commit is contained in:
Nathan Woodburn 2023-12-16 12:26:12 +11:00
parent ced56fb668
commit f8d83fc318
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -70,5 +70,7 @@ server {
location / {
root /var/www/html;
index index.html;
# 404 error page
error_page 404 /index.html;
}
}