server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html; try_files $uri $uri/ /index.html; } # Кэширование статических файлов location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|webp)$ { expires 30d; add_header Cache-Control "public, no-transform"; } # Запрещаем доступ к .git и другим служебным директориям location ~ /\. { deny all; } }