mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-01 02:44:31 +08:00 
			
		
		
		
	 cd458630ec
			
		
	
	cd458630ec
	
	
	
		
			
			* feat(video): refactor video serving endpoint It can now be used without an object storage provider. Closes #2785 * fix: remove debug log
		
			
				
	
	
		
			19 lines
		
	
	
		
			689 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			689 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package models
 | |
| 
 | |
| // S3 is the storage configuration.
 | |
| type S3 struct {
 | |
| 	Enabled        bool   `json:"enabled"`
 | |
| 	Endpoint       string `json:"endpoint,omitempty"`
 | |
| 	AccessKey      string `json:"accessKey,omitempty"`
 | |
| 	Secret         string `json:"secret,omitempty"`
 | |
| 	Bucket         string `json:"bucket,omitempty"`
 | |
| 	Region         string `json:"region,omitempty"`
 | |
| 	ACL            string `json:"acl,omitempty"`
 | |
| 	ForcePathStyle bool   `json:"forcePathStyle"`
 | |
| 
 | |
| 	// This property is no longer used as of v0.1.1. See the standalone
 | |
| 	// property that was pulled out of here instead. It's only left here
 | |
| 	// to allow the migration to take place without data loss.
 | |
| 	ServingEndpoint string `json:"-"`
 | |
| }
 |