0.0
No commit activity in last 3 years
No release in over 3 years
Add the storage option of SCP to the gem CarrierWave.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

CarrierWave SCP storage

Create the SCP storage alternative to upload files using CarrierWave

Gem

gem install carrierwave-scp

Configuration

CarrierWave.configure do |config|
  storage :scp
  config.scp_host = "remote.host.com"
  config.scp_user = "username"
  config.scp_passwd = "password"
  config.scp_folder = "/public_html/uploads"
end