Files
Cosmo def9a6e327
All checks were successful
Deploy Remont Site / deploy (push) Successful in 57s
Ремонт квартиры: сайт remont.digital-home.site из заметок + авто-деплой
- переименованы заметки (Планировка, Гостиная-кухня, Спальня) и картинки
- вычищены таблицы, добавлен README-индекс
- .site/: генератор сайта из markdown (node+sharp → nginx), дизайн из assets
- .gitea/workflows/deploy-remont.yml: авто-сборка и деплой по пушу в папку

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-15 17:46:08 +00:00

22 lines
535 B
Nginx Configuration File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# index — всегда свежий, чтобы правки доезжали сразу
location = /index.html {
add_header Cache-Control "no-cache";
}
# статика с длинным кэшем
location ~* \.(webp|png|jpg|jpeg|svg|css|js|woff2)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800";
}
location / {
try_files $uri $uri/ /index.html;
}
}