feat: add configurable cipher suites for tls listening (#10505)

* feat: add configurable cipher suites for tls listening
* tls.VersionName is go 1.21, copy the function
This commit is contained in:
Steven Masley
2023-11-07 08:55:39 -06:00
committed by GitHub
parent e36503afd2
commit 64398def48
13 changed files with 478 additions and 33 deletions

9
coderd/apidoc/docs.go generated
View File

@ -9865,6 +9865,9 @@ const docTemplate = `{
"address": {
"$ref": "#/definitions/clibase.HostPort"
},
"allow_insecure_ciphers": {
"type": "boolean"
},
"cert_file": {
"type": "array",
"items": {
@ -9897,6 +9900,12 @@ const docTemplate = `{
},
"redirect_http": {
"type": "boolean"
},
"supported_ciphers": {
"type": "array",
"items": {
"type": "string"
}
}
}
},