Skip to content

Instantly share code, notes, and snippets.

@mdestafadilah
Created January 10, 2025 22:43
Show Gist options
  • Save mdestafadilah/fdb7326171aea55db0fb546337329428 to your computer and use it in GitHub Desktop.
Save mdestafadilah/fdb7326171aea55db0fb546337329428 to your computer and use it in GitHub Desktop.
nginx-file-access
location ~* \.(jpg|jpeg|gif|png|bmp|ico|flv|swf|js|css|ttf|woff|woff2) {
add_header Cache-Control public;
add_header Cache-Control must-revalidate;
expires 7d;
}
location ^~ /public/ {
deny all;
}
location /images/ {
access_log off;
expires max;
location ~ "\.(png|jpg|ttf|woff|woff2|pdf)$" {
allow all; # allow images, etc.
}
location ~ "/$" {
allow all;
autoindex off; # allow listing directory contents
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment