# HG changeset patch # User Ruslan Ermilov # Date 1320053777 0 # Node ID 0b65e87daa8a59ccf3dd2b83e93699ce4eb65ee3 # Parent 8c124aef00419bfc347ed29e3ee04133cec73133 Documented that filename extensions that map to MIME types are case-insensitive. Provided an example of how to map several extensions to one type. diff -r 8c124aef0041 -r 0b65e87daa8a xml/en/docs/http/ngx_http_core_module.xml --- a/xml/en/docs/http/ngx_http_core_module.xml Mon Oct 31 08:33:36 2011 +0000 +++ b/xml/en/docs/http/ngx_http_core_module.xml Mon Oct 31 09:36:17 2011 +0000 @@ -2058,7 +2058,15 @@ Maps file name extensions to MIME types of responses. -Several extensions can map to one type. +Extensions are case-insensitive. +Several extensions can map to one type, for example: + +types { + application/octet-stream bin exe dll; + application/octet-stream deb; + application/octet-stream dmg; +} +