[Why]
Haven't define some file(*.log) behavior of browser in mime.types,
so download this file on browser, but we expect display the file content
[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(a)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;
}
--
2.23.0