SEO implementation, adds a structured data response and robots.txt, fixes page structure, adds meta tags, add elements to UI for better SEO as well.

Reviewed-on: #17
Co-authored-by: Michael DiLeo <michael_dileo@proton.me>
Co-committed-by: Michael DiLeo <michael_dileo@proton.me>
This commit was merged in pull request #17.
This commit is contained in:
2025-09-28 18:00:58 +00:00
committed by michael_dileo
parent b9ddb56bbe
commit 5e87f52e5e
8 changed files with 327 additions and 30 deletions

View File

@@ -16,6 +16,7 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
charset utf-8;
access_log /dev/stdout;
error_log /dev/stderr;
@@ -56,6 +57,11 @@ http {
# add_header Pragma "no-cache";
# add_header Expires "0";
}
location ~* \.json$ {
expires 1d;
add_header Cache-Control "public, must-revalidate";
}
location /health {
access_log off;