diff --git a/nginx.conf b/nginx.conf index ac8a1ea..6ba0ac0 100644 --- a/nginx.conf +++ b/nginx.conf @@ -12,7 +12,16 @@ http { access_log nginx_access.log; error_log nginx_error.log info; - include /etc/nginx/mime.types; + types { + text/html html htm shtml; + text/css css; + application/javascript js; + application/wasm wasm; + image/png png; + image/jpeg jpg jpeg; + image/svg+xml svg; + } + default_type application/octet-stream; sendfile on;