view conf/fastcgi_params @ 9328:48f30a3add51

MIME: updated type for js files to text/javascript. RFC 9239 changed recommended media type to text/javascript, and made application/javascript deprecated. According to httparchive.org data, as of 2023-01-01 javascript files are returned with the following types (type, total pages using the type, total requests with the type): application/javascript,11686643,218376911 text/javascript,9623206,76111177 application/x-javascript,4874976,28554156 The same data as of 2024-01-01: application/javascript,10563307,205156998 text/javascript,8429652,78523734 application/x-javascript,4197414,26277166 And as of 2024-08-01: application/javascript,10945376,216622264 text/javascript,8802358,102680806 application/x-javascript,4278134,28726895 This corresponds to text/javascript being used in 23.5%, 25.3%, and 29.5% of responses. That is, it is slowly gaining popularity. Still, application/javascript remains more popular for now. With this change, js files are now returned with the text/javascript type. Similarly, autoindex in jsonp format now also uses text/javascript. Additionally, text/javascript is added to the default charset_types list of the charset module. Since application/javascript is still more popular than text/javascript, application/javascript is also preserved in the default list for now.
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 31 Aug 2024 05:40:06 +0300
parents 62869a9b2e7d
children
line wrap: on
line source


fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  REQUEST_SCHEME     $scheme;
fastcgi_param  HTTPS              $https if_not_empty;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;