diff --git a/Docker/nginx/default.conf b/Docker/nginx/default.conf index 7dd547d..b1faff8 100644 --- a/Docker/nginx/default.conf +++ b/Docker/nginx/default.conf @@ -38,10 +38,20 @@ server { gzip on; gzip_types application/json; - + gzip_http_version 1.0; gzip_static on; + ## PWA serviceworker support. + location ~ ^/pwa/[0-9a-z]+/serviceworker.js { + try_files $uri /index.php?$query_string; + } + + ## PWA manifest support. + location ~ /manifest.json { + try_files $uri /index.php?$query_string; + } + location ~* \.(js|css|ttf|json)$ { gzip_static on; }