15 lines
687 B
Nginx Configuration File
15 lines
687 B
Nginx Configuration File
# ----------------------------------------------------------------------
|
|
# | Filename-based cache busting |
|
|
# ----------------------------------------------------------------------
|
|
|
|
# If you're not using a build process to manage your filename version
|
|
# revving, you might want to consider enabling the following directives
|
|
#
|
|
# To understand why this is important and even a better solution than
|
|
# using something like `*.css?v231`, please see:
|
|
# https://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
|
|
|
|
location ~* (.+)\.(?:\w+)\.(bmp|css|cur|gif|ico|jpe?g|m?js|png|svgz?|webp|webmanifest)$ {
|
|
try_files $uri $1.$2;
|
|
}
|