Fix CSP headers when S3_ALIAS_HOST includes a path component (#25273)
This commit is contained in:
		
							parent
							
								
									1483a3ddfe
								
							
						
					
					
						commit
						e428670e61
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
 | 
					# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def host_to_url(str)
 | 
					def host_to_url(str)
 | 
				
			||||||
  "http#{Rails.configuration.x.use_https ? 's' : ''}://#{str}" if str.present?
 | 
					  "http#{Rails.configuration.x.use_https ? 's' : ''}://#{str}".split('/').first if str.present?
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
base_host = Rails.configuration.x.web_domain
 | 
					base_host = Rails.configuration.x.web_domain
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue