我试图在paperclip gem的帮助下测试aws s3文件上传功能,我已经安装了fakes3 gem并使用
运行fakes3
fakes3 -r~ / fakes3_root -p 4567;
我收到连接被拒绝 - 上传文件时连接(2)错误。
这是我的aws.yml文件
development:
bucket: mybucket
access_key_id: abc
secret_access_key: pqr
s3_port: 4568
s3_host_name: localhost
s3_endpoint: localhost
sslEnabled: false
s3_force_path_style: true
这是我模特的部分
as_attached_file :video,
:storage => :s3,
:path => ":attachment/:id/:style/:basename.:extension"
请帮助, 提前致谢