Добавлена интеграция с Fitbit
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s

This commit is contained in:
poignatov
2026-02-06 20:50:49 +03:00
parent f1c590de43
commit dfccba4e55
13 changed files with 1711 additions and 21 deletions

View File

@@ -86,6 +86,17 @@ server {
add_header Cache-Control "public, immutable";
}
# Статические HTML страницы (Terms и Privacy)
location = /terms {
try_files /terms.html =404;
add_header Cache-Control "public, max-age=3600";
}
location = /privacy {
try_files /privacy.html =404;
add_header Cache-Control "public, max-age=3600";
}
# Handle React Router (SPA)
location / {
try_files $uri $uri/ /index.html;