Fix incorrect RSS feed MIME type in gzip_types directive (#35562)

This commit is contained in:
ioflow 2025-08-29 07:17:04 -07:00 committed by GitHub
parent 4fa203e69e
commit 3c578dbdcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
dist/nginx.conf vendored
View File

@ -62,7 +62,7 @@ server {
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml image/x-icon;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/rss+xml text/javascript image/svg+xml image/x-icon;
gzip_static on;
location / {