Skip to content

Commit a53029f

Browse files
Merge pull request #17 from DaniloGouvea/fix/nginx-gzip
Fix nginx: remove must-revalidate from gzip_proxied to prevent startu…
2 parents 2e9f900 + 05312d6 commit a53029f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.docker/nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ server {
88
gzip on;
99
gzip_vary on;
1010
gzip_min_length 1024;
11-
gzip_proxied expired no-cache no-store private must-revalidate auth;
11+
gzip_proxied expired no-cache no-store private auth;
1212
gzip_types
1313
text/plain
1414
text/css
@@ -48,4 +48,4 @@ server {
4848
return 200 "healthy\n";
4949
add_header Content-Type text/plain;
5050
}
51-
}
51+
}

0 commit comments

Comments
 (0)