Browse Source

pwa service-worker.js and pwa manifest.json nginx config

bach 2 years ago
parent
commit
ca403873f5
1 changed files with 11 additions and 1 deletions
  1. 11 1
      Docker/nginx/default.conf

+ 11 - 1
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;
     }