Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Blobstore ¶
type Blobstore struct { /*AdminUsers - Descr: List of Username and Password pairs that have admin access to the blobstore. Cloud Controller must use one of these to access the blobstore via HTTP Basic Auth. Example: users: - username: user1 password: password1 - username: user2 password: password2 Default: <nil> */ AdminUsers interface{} `yaml:"admin_users,omitempty"` /*SecureLink - Descr: The secret used for signing URLs Default: <nil> */ SecureLink *SecureLink `yaml:"secure_link,omitempty"` /*MaxUploadSize - Descr: Max allowed file size for upload Default: 5000m */ MaxUploadSize interface{} `yaml:"max_upload_size,omitempty"` /*Port - Descr: TCP port on which the blobstore server (nginx) listens Default: 80 */ Port interface{} `yaml:"port,omitempty"` /*Blobstore - Descr: TCP port on which the blobstore server (nginx) listens Default: 80 */ Blobstore *Blobstore `yaml:"blobstore,omitempty"` /*Domain - Descr: The system domain. The public server will listen on host 'blobstore.system-domain.tld' Default: <nil> */ Domain interface{} `yaml:"domain,omitempty"` /*Tls - Descr: The PEM-encoded private key for signing TLS/SSL traffic Default: <nil> */ Tls *Tls `yaml:"tls,omitempty"` }
* File Generated by enaml generator * !!! Please do not edit this file !!!
type SecureLink ¶
type SecureLink struct {
/*Secret - Descr: The secret used for signing URLs Default: <nil>
*/
Secret interface{} `yaml:"secret,omitempty"`
}
* File Generated by enaml generator * !!! Please do not edit this file !!!
type Tls ¶
type Tls struct { /*Port - Descr: The TCP port on which the internal blobstore server listens Default: 443 */ Port interface{} `yaml:"port,omitempty"` /*Cert - Descr: The PEM-encoded certificate (optionally as a certificate chain) for serving blobs over TLS/SSL Default: <nil> */ Cert interface{} `yaml:"cert,omitempty"` /*PrivateKey - Descr: The PEM-encoded private key for signing TLS/SSL traffic Default: <nil> */ PrivateKey interface{} `yaml:"private_key,omitempty"` }
* File Generated by enaml generator * !!! Please do not edit this file !!!
Click to show internal directories.
Click to hide internal directories.