fix: force octet-stream for seeded txt files
Some checks failed
cc-ci/testme cc-ci: failure

This commit is contained in:
autonomic-bot
2026-06-01 20:03:03 +00:00
parent ee5cb811c6
commit 71e7326a99

View File

@ -9,6 +9,7 @@ server {
location ~ \.txt$ {
root /usr/share/nginx/html;
types { }
default_type application/octet-stream;
try_files $uri =404;
}