No commit activity in last 3 years
No release in over 3 years
Custom uploader for CarrierWave lib using SCP method
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 Upload

Custom upload plugin for CarrierWave using SCP method NOTE that the workers server need connection permission to the storage server using private key.

Gem

gem install carrierwave-scp-upload

Configuration

CarrierWave.configure do |config|
  config.storage = :scp
  config.scp_host = "<host ip>"
  config.scp_user = "<username>"
  config.scp_options = { :password=> "<password>" }
  config.scp_folder = "/var/folder"
end