Przeglądaj źródła

configures nginx for serving .gz files

bach 3 lat temu
rodzic
commit
52cf652608
1 zmienionych plików z 11 dodań i 0 usunięć
  1. 11 0
      Docker/nginx/default.conf

+ 11 - 0
Docker/nginx/default.conf

@@ -35,4 +35,15 @@ server {
     location ~ /\.ht {
     location ~ /\.ht {
         deny all;
         deny all;
     }
     }
+
+    gzip on;
+    gzip_types application/json;
+    
+    gzip_http_version 1.0;
+    gzip_static on;
+
+    location ~* \.(js|css|ttf|json)$ {
+      gzip_static on;
+    }
+
 }
 }