change default to true to enforce sa whitelist (#1549)
* change default to true to enable whitelist * add devDefault
This commit is contained in:
parent
1d96d25f3f
commit
9236ac4bdf
@ -320,6 +320,7 @@ func newNetwork(flags *Flags) (*Processes, error) {
|
||||
|
||||
"--server.extensions.revocation=false",
|
||||
"--server.use-peer-ca-whitelist=false",
|
||||
"--storage.satellite-id-restriction=false",
|
||||
},
|
||||
"run": {},
|
||||
})
|
||||
|
@ -20,7 +20,7 @@ type Config struct {
|
||||
Path string `help:"path to store data in" default:"$CONFDIR/storage"`
|
||||
|
||||
WhitelistedSatelliteIDs string `help:"a comma-separated list of approved satellite node ids" default:""`
|
||||
SatelliteIDRestriction bool `help:"if true, only allow data from approved satellites" default:"false"`
|
||||
SatelliteIDRestriction bool `help:"if true, only allow data from approved satellites" devDefault:"false" default:"true"`
|
||||
AllocatedDiskSpace memory.Size `user:"true" help:"total allocated disk space in bytes" default:"1TB"`
|
||||
AllocatedBandwidth memory.Size `user:"true" help:"total allocated bandwidth in bytes" default:"500GiB"`
|
||||
KBucketRefreshInterval time.Duration `help:"how frequently Kademlia bucket should be refreshed with node stats" default:"1h0m0s"`
|
||||
|
Loading…
Reference in New Issue
Block a user