Esitleme: orijinal+turkce ortak zaman cizelgesi, ayni anda baslar

- Her blok icin slot=max(orijinal,turkce)+bosluk; iki ses de ayni slotta
- Baslangic 'before we continue' (Kuya 1) ile, 0:00
- Blok 2 Kuya 2->Kuya 1 (George) duzeltildi
- TL == TL_tr (dil degistirince senkron bozulmaz)
- nginx cache kisaltildi (guncellemeler hemen gorunsun)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
yilsem
2026-07-04 05:41:07 +03:00
co-authored by Claude Opus 4.8
parent e9e23c474b
commit 29f317011f
4 changed files with 6 additions and 5 deletions
+2 -2
View File
File diff suppressed because one or more lines are too long
+4 -3
View File
@@ -7,16 +7,17 @@ server {
# Tek sayfa; her yol index.html'e düşsün # Tek sayfa; her yol index.html'e düşsün
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache, must-revalidate";
} }
# Ses dosyaları: byte-range (seek) + uzun cache # Ses dosyaları: byte-range (seek); iterasyon sırasında kısa cache
location ~* \.(mp3|wav|ogg)$ { location ~* \.(mp3|wav|ogg)$ {
add_header Accept-Ranges bytes; add_header Accept-Ranges bytes;
add_header Cache-Control "public, max-age=604800"; add_header Cache-Control "no-cache, must-revalidate";
} }
location ~* \.(js|css|png|jpg|svg)$ { location ~* \.(js|css|png|jpg|svg)$ {
add_header Cache-Control "public, max-age=86400"; add_header Cache-Control "no-cache, must-revalidate";
} }
gzip on; gzip on;
Binary file not shown.
Binary file not shown.