Skip to content

Commit

Permalink
CDI-914: add use_dns01_le_challenge option
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-lukyanchyk committed Dec 24, 2024
1 parent 050df98 commit ce59a5d
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 @@ -45,6 +45,7 @@ type Options struct {
StaticResponseHeaders *StaticResponseHeaders `json:"static_response_headers"`
TLSVersions *TLSVersions `json:"tls_versions"`
UseDefaultLEChain *UseDefaultLEChain `json:"use_default_le_chain"`
UseDNS01LEChallenge *UseDNS01LEChallenge `json:"use_dns01_le_challenge"`
UserAgentACL *UserAgentACL `json:"user_agent_acl"`
UseRSALECert *UseRSALECert `json:"use_rsa_le_cert"`
WAAP *WAAP `json:"waap"`
Expand Down Expand Up @@ -305,6 +306,11 @@ type UseDefaultLEChain struct {
Value bool `json:"value"`
}

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

type UserAgentACL struct {
Enabled bool `json:"enabled"`
PolicyType string `json:"policy_type"`
Expand Down

0 comments on commit ce59a5d

Please sign in to comment.