You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If your s3 bucket does not have the default "us-east-1" location, you won't be able to upload images or resources to S3 even if ENV[S3_REGION] is correctly set
You'll get a Excon::Errors::SocketError with the message
hostname was not match with the server certificate
You can see in those 2 files that there is no def s3_region class method defined
images/lib/refinery/images/configuration.rb
resources/lib/refinery/images/configuration.rb
To manually fix the issue, modify those files in your refinery project :
config/initializers/refinery/images.rb
config/initializers/refinery/resources.rb
and add this line
config.s3_region=Refinery::Core.s3_region
The text was updated successfully, but these errors were encountered:
If your s3 bucket does not have the default "us-east-1" location, you won't be able to upload images or resources to S3 even if ENV[S3_REGION] is correctly set
You'll get a Excon::Errors::SocketError with the message
You can see in those 2 files that there is no def s3_region class method defined
To manually fix the issue, modify those files in your refinery project :
and add this line
The text was updated successfully, but these errors were encountered: