[why] haven't define some file(*.log) behavior of browser in mime.types, so download this file on browser now. [how] 1. add correspondence of file in mime.types 2. set default type in default.conf of nginx, other type file that haven't define in mime.types, will display the file content in browser
Signed-off-by: Lu Weitao luweitaobe@163.com --- container/srv-http/root/etc/nginx/conf.d/default.conf | 1 + container/srv-http/root/etc/nginx/mime.types | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/container/srv-http/root/etc/nginx/conf.d/default.conf b/container/srv-http/root/etc/nginx/conf.d/default.conf index 9c15d99..91371f1 100644 --- a/container/srv-http/root/etc/nginx/conf.d/default.conf +++ b/container/srv-http/root/etc/nginx/conf.d/default.conf @@ -13,6 +13,7 @@ server { }
location / { + default_type text/html; autoindex on; autoindex_localtime on; allow all; diff --git a/container/srv-http/root/etc/nginx/mime.types b/container/srv-http/root/etc/nginx/mime.types index e7f2f1c..a4ee74b 100644 --- a/container/srv-http/root/etc/nginx/mime.types +++ b/container/srv-http/root/etc/nginx/mime.types @@ -4,8 +4,8 @@ types { text/css css; text/xml xml; text/yaml yaml; - text/plain txt time data sh; + text/plain txt time data sh log;
application/json json; - application/x-gzip gz tgz; + application/x-gzip gz tgz cgz; }
TO ALL
On Fri, Nov 13, 2020 at 09:21:38AM +0800, Lu Weitao wrote:
[why]
Don't indent below.
haven't define some file(*.log) behavior of browser in mime.types, so download this file on browser now.
Add blank line here.
[how]
Don't indent below.
- add correspondence of file in mime.types
- set default type in default.conf of nginx, other type file that
haven't define in mime.types, will display the file content in browser
"haven't ..." should be aligned to "set" in the above line.
Thanks, Fengguang
On Fri, Nov 13, 2020 at 11:28:14AM +0800, Wu Fengguang wrote:
TO ALL
On Fri, Nov 13, 2020 at 09:21:38AM +0800, Lu Weitao wrote:
[why]
Don't indent below.
OK
haven't define some file(*.log) behavior of browser in mime.types, so download this file on browser now.
Add blank line here.
OK
[how]
Don't indent below.
OK
- add correspondence of file in mime.types
- set default type in default.conf of nginx, other type file that
haven't define in mime.types, will display the file content in browser
"haven't ..." should be aligned to "set" in the above line.
OK
Thanks, Weitao
Thanks, Fengguang