Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MINIO_SERVER_URL (0.24 sec)

  1. internal/config/constants.go

    	EnvMinIOSubnetProxy   = "MINIO_SUBNET_PROXY"
    
    	EnvMinIOCallhomeEnable    = "MINIO_CALLHOME_ENABLE"
    	EnvMinIOCallhomeFrequency = "MINIO_CALLHOME_FREQUENCY"
    
    	EnvMinIOServerURL             = "MINIO_SERVER_URL"
    	EnvBrowserRedirect            = "MINIO_BROWSER_REDIRECT" // On by default
    	EnvBrowserRedirectURL         = "MINIO_BROWSER_REDIRECT_URL"
    	EnvRootDriveThresholdSize     = "MINIO_ROOTDRIVE_THRESHOLD_SIZE"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jan 01 16:36:33 GMT 2024
    - 3.4K bytes
    - Viewed (3)
  2. README.md

    For example: `export MINIO_SERVER_URL="https://minio.example.net"`
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  3. cmd/common-main.go

    	}
    
    	if serverURL := env.Get(config.EnvMinIOServerURL, ""); serverURL != "" {
    		u, err := xnet.ParseHTTPURL(serverURL)
    		if err != nil {
    			logger.Fatal(err, "Invalid MINIO_SERVER_URL value in environment variable")
    		}
    		// Look for if URL has invalid values and return error.
    		if !((u.Scheme == "http" || u.Scheme == "https") &&
    			(u.Path == "/" || u.Path == "") && u.Opaque == "" &&
    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)
  4. cmd/testdata/xl-meta-merge.zip

    TLS certificates do not have the IP SAN for the MinIO server host, the MinIO Console may fail to validate the connection to the server. Use the `MINIO_SERVER_URL` environment variable and specify the proxy-accessible hostname of the MinIO server to allow the Console to use the MinIO server API using the TLS certificate. For example: `export MINIO_SERVER_URL="https://minio.example.net"` | Dashboard | Creating a bucket | | ---------- | ---------- | | ![Dashboard](https://github.com/minio/minio/blob/...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top