Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 2297)

Ticket Resolution Summary Owner Reporter
#1243 fixed Add primary media type for font cj.knight@…
Description

The IANA has deprecated the use of the application MIME type for fonts in favour of a primary font type.

Source: https://www.iana.org/assignments/media-types/media-types.xhtml#font - (In page search for "deprecated" to find the old entries).

To become compliant, the mime.types file would have the line:

application/font-woff      woff; 

replaced with

font/woff                 woff;
font/woff2                woff2;

Which additionally adds WOFF2 support as per the IANA listing. I note that Google Fonts already serves fonts with this new MIME type.

#1612 duplicate Add Stric SNI supprot jinham335908093@…
Description

In Apache and haproxy, there is support of strict sni which can reject the client which has no sni support. It makes the server safer by rejecting the scanner with no sni support

#885 fixed Add support for multiple elliptic curves Commenter123@…
Description

Curve25519 is about to land in Chrome 50: https://www.chromestatus.com/feature/5682529109540864

nginx currently does not allow to use more than one curve. We can't use Curve25519 as a lot of clients will not support it.

Allowing several curves with server preference would help to improve security and compatibility.

Examples: ssl_ecdh_curve "brainpoolP512r1:secp521r1:prime256v1"; ssl_prefer_server_ecdh_curve on; or ssl_ecdh_curve brainpoolP512r1 secp521r1 prime256v1; ssl_prefer_server_ecdh_curve off;

Also see this request: https://forum.nginx.org/read.php?10,263871,263871

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.