Skip to content

Commit

Permalink
Merge pull request #36 from G-Core/add-use-rsa-le-cert-option
Browse files Browse the repository at this point in the history
add the UseRSALECert option
  • Loading branch information
andrei-lukyanchyk authored Apr 18, 2023
2 parents 5b49bf3 + ce4b0a5 commit b09c0e5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gcore/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ type Options struct {
CacheHttpHeaders *CacheHttpHeaders `json:"cache_http_headers"`
WebSockets *WebSockets `json:"websockets"`
TLSVersions *TLSVersions `json:"tls_versions"`
UseRSALECert *UseRSALECert `json:"use_rsa_le_cert"`
}

type EdgeCacheSettings struct {
Expand Down Expand Up @@ -119,3 +120,8 @@ type TLSVersions struct {
Enabled bool `json:"enabled"`
Value []string `json:"value"`
}

type UseRSALECert struct {
Enabled bool `json:"enabled"`
Value bool `json:"value"`
}

0 comments on commit b09c0e5

Please sign in to comment.