storj/pkg/peertls/tlsopts/config.go
2019-03-25 22:52:12 +01:00

17 lines
701 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package tlsopts
import (
"storj.io/storj/pkg/peertls/extensions"
)
// Config holds tls configuration parameters
type Config struct {
RevocationDBURL string `default:"bolt://$CONFDIR/revocations.db" help:"url for revocation database (e.g. bolt://some.db OR redis://127.0.0.1:6378?db=2&password=abc123)"`
PeerCAWhitelistPath string `help:"path to the CA cert whitelist (peer identities must be signed by one these to be verified). this will override the default peer whitelist"`
UsePeerCAWhitelist bool `help:"if true, uses peer ca whitelist checking" default:"false"`
Extensions extensions.Config
}