Files
3d-trpay/nginx.conf
T
yilsemandClaude Opus 4.8 29f317011f 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>
2026-07-04 05:41:07 +03:00

27 lines
735 B
Nginx Configuration File
Raw 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;
# 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;
}