aboutsummaryrefslogtreecommitdiffstats
path: root/install/sample-nginx.conf
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-09-21 15:47:18 -0700
committerredmatrix <mike@macgirvin.com>2016-09-21 15:47:18 -0700
commitec5cc08fabbdcd17e5e73821c083e4583cdf3214 (patch)
tree754c335ff01a0df32e71e3b2924f75d6e8c23ef4 /install/sample-nginx.conf
parentb5d093e5caa87517280912e40a0f47352dca3f04 (diff)
downloadvolse-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
Diffstat (limited to 'install/sample-nginx.conf')
-rw-r--r--install/sample-nginx.conf2
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;
}