Skip to content

Commit 05312d6

Browse files
authored
Fix nginx: remove must-revalidate from gzip_proxied to prevent startup error
1 parent 77ee1a5 commit 05312d6

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)