A cli tool to quickly create and manage nginx server blocks.
https://up.js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
14 lines
350 B
'use strict';
|
|
|
|
module.exports = [
|
|
`ECDHE-ECDSA-AES256-GCM-SHA384`,
|
|
`ECDHE-RSA-AES256-GCM-SHA384`,
|
|
`ECDHE-ECDSA-CHACHA20-POLY1305`,
|
|
`ECDHE-RSA-CHACHA20-POLY1305`,
|
|
`ECDHE-ECDSA-AES128-GCM-SHA256`,
|
|
`ECDHE-RSA-AES128-GCM-SHA256`,
|
|
`ECDHE-ECDSA-AES256-SHA384`,
|
|
`ECDHE-RSA-AES256-SHA384`,
|
|
`ECDHE-ECDSA-AES128-SHA256`,
|
|
`ECDHE-RSA-AES128-SHA256`
|
|
];
|
|
|