# 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 --git a/xml/en/docs/http/ngx_http_core_module.xml b/xml/en/docs/http/ngx_http_core_module.xml --- a/xml/en/docs/http/ngx_http_core_module.xml +++ b/xml/en/docs/http/ngx_http_core_module.xml @@ -2058,7 +2058,15 @@ location @wordpress { 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; +} +