Untitled

 avatar
unknown
nginx
a year ago
463 B
7
Indexable
events {
    worker_connections 1024;
}

http {
    include /etc/nginx/mime.types;
    proxy_cache_path /usr/share/nginx/cache keys_zone=my_cache:10m;

    server {
        listen 80;
        root /usr/share/nginx/html;
        index index.html index.htm;

        proxy_cache my_cache;

        location / {
            try_files $uri $uri/ /index.html;
        }

        location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
            expires 30d;
        }
    }
}
Editor is loading...
Leave a Comment