mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
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:
Generated
+9
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Generated
+9
@@ -8901,6 +8901,9 @@
|
||||
"address": {
|
||||
"$ref": "#/definitions/clibase.HostPort"
|
||||
},
|
||||
"allow_insecure_ciphers": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cert_file": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -8933,6 +8936,12 @@
|
||||
},
|
||||
"redirect_http": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"supported_ciphers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user