Skip to content

Commit

Permalink
Allow default to be used.
Browse files Browse the repository at this point in the history
  • Loading branch information
beautifulentropy committed Jan 11, 2024
1 parent 8b34693 commit 3c1f7a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/boulder-wfe2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ type Config struct {
}

// MaxNames is the maximum number of subjectAltNames in a single cert.
// The value supplied MUST be greater than 0 and no more than 100,
// The value supplied SHOULD be greater than 0 and no more than 100,
// defaults to 100. These limits are per section 7.1 of our combined
// CP/CPS, under "DV-SSL Subscriber Certificate". The value must match
// the CA and RA configurations.
MaxNames int `validate:"required,min=1,max=100"`
MaxNames int `validate:"min=0,max=100"`
}

Syslog cmd.SyslogConfig
Expand Down

0 comments on commit 3c1f7a9

Please sign in to comment.