Merge pull request #2787 from element-hq/quenting/docker-vary-encoding

Send 'Vary: Content-Encoding' header from nginx
This commit is contained in:
fkwp 2024-11-15 09:22:25 +01:00 committed by GitHub
commit 9650ca9687
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ server {
root /app;
gzip_static on;
gzip_vary on;
location / {
try_files $uri $uri/ /index.html;