Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ErrNoCertsAndHTTPSEndpoints (0.29 sec)

  1. internal/config/errors.go

    		"",
    	)
    
    	ErrTLSNoPassword = newErrFn(
    		"Missing TLS password",
    		"Please set the password to environment variable `MINIO_CERT_PASSWD` so that the private key can be decrypted",
    		"",
    	)
    
    	ErrNoCertsAndHTTPSEndpoints = newErrFn(
    		"HTTPS specified in endpoints, but no TLS certificate is found on the local machine",
    		"Please add TLS certificate or use HTTP endpoints only",
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Wed Jul 10 16:57:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. cmd/server-main.go

    	})
    
    	// Is distributed setup, error out if no certificates are found for HTTPS endpoints.
    	if globalIsDistErasure {
    		if globalEndpoints.HTTPS() && !globalIsTLS {
    			logger.Fatal(config.ErrNoCertsAndHTTPSEndpoints(nil), "Unable to start the server")
    		}
    		if !globalEndpoints.HTTPS() && globalIsTLS {
    			logger.Fatal(config.ErrCertsAndHTTPEndpoints(nil), "Unable to start the server")
    		}
    	}
    
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 35.2K bytes
    - Viewed (3)
Back to top