I am using s3 with Paperclip which is working well. I am running into problems however with the default_url
for missing attachements. I want the default_url
to be :attachement/default/:style
in the same s3 bucket as the other files. However the default_url
when used to generate a missing image is local for the rails app which is not what I want. E.g
/avatar/default/thumb
is not what I want for the default, instead I want {s3_base_url}/avatar/default/thumb
. I cannot figure out how to do this.