mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							941 B
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							941 B
						
					
					
				disk:
 | 
						|
  service: Disk
 | 
						|
  root: <%= ENV['WORKDIR'] || '.' %>/attachments
 | 
						|
  public: true
 | 
						|
 | 
						|
aws_s3:
 | 
						|
  service: S3
 | 
						|
  access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
 | 
						|
  secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
 | 
						|
  region: <%= ENV['AWS_REGION'] || 'us-east-1' %>
 | 
						|
  bucket: <%= ENV['S3_ATTACHMENTS_BUCKET'] %>
 | 
						|
  public: <%= ENV['ACTIVE_STORAGE_PUBLIC'] == 'true' %>
 | 
						|
  upload:
 | 
						|
    cache_control: 'public, max-age=31536000'
 | 
						|
 | 
						|
google:
 | 
						|
  service: GCS
 | 
						|
  credentials: <%= JSON.parse(ENV['GCS_CREDENTIALS'] || '{}') %>
 | 
						|
  project: <%= ENV['GCS_PROJECT'] %>
 | 
						|
  bucket: <%= ENV['GCS_BUCKET'] %>
 | 
						|
  public: <%= ENV['ACTIVE_STORAGE_PUBLIC'] == 'true' %>
 | 
						|
  cache_control: "public, max-age=31536000"
 | 
						|
 | 
						|
azure:
 | 
						|
  service: AzureStorage
 | 
						|
  storage_account_name: <%= ENV['AZURE_STORAGE_ACCOUNT_NAME'] %>
 | 
						|
  storage_access_key: <%= ENV['AZURE_STORAGE_ACCESS_KEY'] %>
 | 
						|
  container: <%= ENV['AZURE_CONTAINER'] %>
 | 
						|
  public: <%= ENV['ACTIVE_STORAGE_PUBLIC'] == 'true' %>
 |