fix(nginx): drop duplicate application/x-rpm mime declaration
All checks were successful
deploy-ui / build-and-deploy (push) Successful in 52s

The mapping is already provided by /etc/nginx/mime.types on Fedora's
nginx package, so redeclaring it produced a duplicate-extension warning
on every `nginx -t`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 08:31:41 +03:00
parent e9abeccdea
commit 1af2d440db

View File

@@ -11,9 +11,6 @@ server {
root /var/www/rpm; root /var/www/rpm;
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
types {
application/x-rpm rpm;
}
default_type application/octet-stream; default_type application/octet-stream;
location /assets/ { location /assets/ {