Add self sign cert support

This commit is contained in:
世界 2022-09-23 17:13:18 +08:00
parent 852829b9dc
commit abe3dc6039
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 72 additions and 10 deletions

View file

@ -3,6 +3,7 @@ package option
type InboundTLSOptions struct {
Enabled bool `json:"enabled,omitempty"`
ServerName string `json:"server_name,omitempty"`
Insecure bool `json:"insecure,omitempty"`
ALPN Listable[string] `json:"alpn,omitempty"`
MinVersion string `json:"min_version,omitempty"`
MaxVersion string `json:"max_version,omitempty"`