Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for globalPublicCerts (0.23 sec)

  1. cmd/common-main.go

    	consoleCerts.GlobalCertsCADir = &consoleCerts.ConfigDir{
    		Path: globalCertsCADir.Get(),
    	}
    
    	// set certs before other console initialization
    	consoleapi.GlobalRootCAs, consoleapi.GlobalPublicCerts, consoleapi.GlobalTLSCertsManager = globalRootCAs, globalPublicCerts, globalTLSCerts
    
    	swaggerSpec, err := loads.Embedded(consoleapi.SwaggerJSON, consoleapi.FlatSwaggerJSON)
    	if err != nil {
    		return nil, err
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 35.8K bytes
    - Viewed (2)
  2. cmd/globals.go

    	globalBootTime = UTCNow()
    
    	globalActiveCred         auth.Credentials
    	globalSiteReplicatorCred siteReplicatorCred
    
    	// Captures if root credentials are set via ENV.
    	globalCredViaEnv bool
    
    	globalPublicCerts []*x509.Certificate
    
    	globalDomainNames []string      // Root domains for virtual host style requests
    	globalDomainIPs   set.StringSet // Root domain IP address(s) for a distributed MinIO deployment
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  3. cmd/server-main.go

    	handleCommonArgs(ctxt)
    
    	logger.FatalIf(CheckLocalServerAddr(globalMinioAddr), "Unable to validate passed arguments")
    
    	var err error
    	var setupType SetupType
    
    	// Check and load TLS certificates.
    	globalPublicCerts, globalTLSCerts, globalIsTLS, err = getTLSConfig()
    	logger.FatalIf(err, "Unable to load the TLS configuration")
    
    	// Check and load Root CAs.
    	globalRootCAs, err = certs.GetRootCAs(globalCertsCADir.Get())
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 34.9K bytes
    - Viewed (1)
  4. cmd/admin-handlers.go

    	}
    }
    
    func getTLSInfo() madmin.TLSInfo {
    	tlsInfo := madmin.TLSInfo{
    		TLSEnabled: globalIsTLS,
    		Certs:      []madmin.TLSCert{},
    	}
    
    	if globalIsTLS {
    		for _, c := range globalPublicCerts {
    			check := xxh3.Hash(c.RawIssuer)
    			check ^= xxh3.Hash(c.RawSubjectPublicKeyInfo)
    			// We XOR, so order doesn't matter.
    			for _, v := range c.DNSNames {
    				check ^= xxh3.HashString(v)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top