You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tesseract/aws/main.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ var (
71
71
acceptSHA1=flag.Bool("accept_sha1_signing_algorithms", true, "If true, accept chains that use SHA-1 based signing algorithms. This flag will eventually be removed, and such algorithms will be rejected.")
72
72
enablePublicationAwaiter=flag.Bool("enable_publication_awaiter", true, "If true then the certificate is integrated into log before returning the response.")
73
73
notBeforeRL=flag.String("rate_limit_old_not_before", "", "Optionally rate limits submissions with old notBefore dates. Expects a value of with the format: \"<go duration>:<rate limit>\", e.g. \"30d:50\" would impose a limit of 50 certs/s on submissions whose notBefore date is >= 30days old.")
74
+
issuerRL=flag.Float64("rate_limit_per_issuer", -1, "Optionally rate limits submissions per issuer per second. Disabled when null or negative.")
74
75
75
76
// Performance flags
76
77
httpDeadline=flag.Duration("http_deadline", time.Second*10, "Deadline for HTTP requests.")
@@ -141,6 +142,7 @@ eventually go away. See /internal/lax509/README.md for more information.`)
Copy file name to clipboardExpand all lines: cmd/tesseract/gcp/main.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ var (
72
72
enablePublicationAwaiter=flag.Bool("enable_publication_awaiter", true, "If true then the certificate is integrated into log before returning the response.")
73
73
witnessPolicyFile=flag.String("witness_policy_file", "", "(Optional) Path to the file containing the witness policy in the format described at https://git.glasklar.is/sigsum/core/sigsum-go/-/blob/main/doc/policy.md")
74
74
notBeforeRL=flag.String("rate_limit_old_not_before", "", "Optionally rate limits submissions with old notBefore dates. Expects a value of with the format: \"<go duration>:<rate limit>\", e.g. \"30d:50\" would impose a limit of 50 certs/s on submissions whose notBefore date is >= 30days old.")
75
+
issuerRL=flag.Float64("rate_limit_per_issuer", -1, "Optionally rate limits submissions per issuer per second. Disabled when null or negative.")
75
76
76
77
// Performance flags
77
78
httpDeadline=flag.Duration("http_deadline", time.Second*10, "Deadline for HTTP requests.")
@@ -128,6 +129,7 @@ eventually go away. See /internal/lax509/README.md for more information.`)
Copy file name to clipboardExpand all lines: cmd/tesseract/posix/main.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,7 @@ var (
75
75
enablePublicationAwaiter=flag.Bool("enable_publication_awaiter", true, "If true then the certificate is integrated into log before returning the response.")
76
76
witnessPolicyFile=flag.String("witness_policy_file", "", "(Optional) Path to the file containing the witness policy in the format describe at https://git.glasklar.is/sigsum/core/sigsum-go/-/blob/main/doc/policy.md")
77
77
notBeforeRL=flag.String("rate_limit_old_not_before", "", "Optionally rate limits submissions with old notBefore dates. Expects a value of with the format: \"<go duration>:<rate limit>\", e.g. \"30d:50\" would impose a limit of 50 certs/s on submissions whose notBefore date is >= 30days old.")
78
+
issuerRL=flag.Float64("rate_limit_per_issuer", -1, "Optionally rate limits submissions per issuer per second. Disabled when null or negative.")
78
79
79
80
// Performance flags
80
81
httpDeadline=flag.Duration("http_deadline", time.Second*10, "Deadline for HTTP requests.")
@@ -121,6 +122,7 @@ eventually go away. See /internal/lax509/README.md for more information.`)
0 commit comments