mirror of
https://github.com/minio/minio.git
synced 2025-11-20 09:56:07 -05:00
Enforce signature v4 tests all the time, server defaults to only authenticated requests.
All requests must be authenticated to minio server from now on by using keys generated at
``${HOME}/.minio/users.json`` - from ``minio controller`` during its first time run.
Add a new hidden option ``--anonymous`` for running server in unauthenticated mode.
This commit is contained in:
6
flags.go
6
flags.go
@@ -49,6 +49,12 @@ var (
|
||||
Usage: "Limit for total concurrent requests: [DEFAULT: 16].",
|
||||
}
|
||||
|
||||
anonymousFlag = cli.BoolFlag{
|
||||
Name: "anonymous",
|
||||
Hide: true,
|
||||
Usage: "Make server run in anonymous mode where all client connections are accepted.",
|
||||
}
|
||||
|
||||
certFlag = cli.StringFlag{
|
||||
Name: "cert",
|
||||
Usage: "Provide your domain certificate.",
|
||||
|
||||
Reference in New Issue
Block a user