SEO Tweaks

This commit is contained in:
2026-05-12 00:45:02 +12:00
parent 955a563d14
commit ac6179e776
96 changed files with 1623 additions and 273 deletions
+12
View File
@@ -177,6 +177,18 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /api/auth/ {
set $goodwalk_mail_api goodwalk_svelte_mail_api:8000;
limit_req zone=goodwalk_limit burst=10 nodelay;
rewrite ^/api/auth/(.*)$ /auth/$1 break;
proxy_pass http://$goodwalk_mail_api;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
if (-f /etc/nginx/conf.d/maintenance.flag) {
return 503;