nginx statik dosyaları önbellekleme çalışmıyor


0

işte conf dosyam: usr / local / nginx / sites-available / default

server {
listen 80;
server_name localhost;
location / {
root html;
index index.php index.html index.htm;
}
# redirect server error pages to the static page /50x.html

error_page 500 502 503 504 /50x.html;
location = /50x.html
{
root html;
}
# serve static files directly
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|swf)$ {
expires 30d;
}

ancak statik dosyaları önbelleğe almaz, nasıl düzeltmeliyim? çok teşekkürler

Yanıtlar:


1

Bu benim için çalışıyor:

location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
            expires max;
            log_not_found off;
            root   /var/www/u_1/public_html/;
    }
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.