diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-21 15:47:18 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-21 15:47:18 -0700 |
commit | ec5cc08fabbdcd17e5e73821c083e4583cdf3214 (patch) | |
tree | 754c335ff01a0df32e71e3b2924f75d6e8c23ef4 | |
parent | b5d093e5caa87517280912e40a0f47352dca3f04 (diff) | |
download | volse-hubzilla-ec5cc08fabbdcd17e5e73821c083e4583cdf3214.tar.gz volse-hubzilla-ec5cc08fabbdcd17e5e73821c083e4583cdf3214.tar.bz2 volse-hubzilla-ec5cc08fabbdcd17e5e73821c083e4583cdf3214.zip |
issue #521, add 'map' extension to files served natively by nginx without using the project controller
-rw-r--r-- | install/sample-nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/sample-nginx.conf b/install/sample-nginx.conf index da84c8b09..85178596a 100644 --- a/install/sample-nginx.conf +++ b/install/sample-nginx.conf @@ -92,7 +92,7 @@ server { # otherwise fall back to front controller # allow browser to cache them # added .htm for advanced source code editor library - location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|woff2|svg)$ { + location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|map|ttf|woff|woff2|svg)$ { expires 30d; try_files $uri /index.php?q=$uri&$args; } |