- 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>
27 lines
735 B
Nginx Configuration File
27 lines
735 B
Nginx Configuration File
server {
|
||
listen 80;
|
||
server_name _;
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
|
||
# Tek sayfa; her yol index.html'e düşsün
|
||
location / {
|
||
try_files $uri $uri/ /index.html;
|
||
add_header Cache-Control "no-cache, must-revalidate";
|
||
}
|
||
|
||
# Ses dosyaları: byte-range (seek); iterasyon sırasında kısa cache
|
||
location ~* \.(mp3|wav|ogg)$ {
|
||
add_header Accept-Ranges bytes;
|
||
add_header Cache-Control "no-cache, must-revalidate";
|
||
}
|
||
|
||
location ~* \.(js|css|png|jpg|svg)$ {
|
||
add_header Cache-Control "no-cache, must-revalidate";
|
||
}
|
||
|
||
gzip on;
|
||
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
||
gzip_min_length 1024;
|
||
}
|