如何在 Nginx 中.txt
提供带有标题的文本 ( ) 文件?Content-Type: text/plain; Charset=UTF-8
我有一个在 Ubuntu 20.04 上运行的 nginx/1.18.0,nginx.conf
我有这个集合:
http {
(...)
include /etc/nginx/mime.types;
我mime.types
有这个:
types {
(...)
text/plain txt;
但是当我访问文本文件时,它会提供这些标题:
HTTP/1.1 200 OK
(...)
Content-Type: text/plain
但我想为它提供这些标头:
Content-Type: text/plain; charset=UTF-8
我怎样才能做到这一点?
你想要的只是这个: