4
1
currently, I am hosting a webdav share setup in order to store files I need anywhere I am. It is available via HTTPS.
Things are that I do not need all the HTTP machinery -i.e. my nginx http server is only there for this webdav folder.
I am not sure I made the best choice. My requirements on the client side are:
- secured transfers
- mountable as a network drive at work with 'near realtime sync'
- usable for any OS I could use (including my mobile (android))
At first, I chose webdav since it would pass through my work proxy (which refuses all that is not on HTTP/S (port 80 or 443)).
Today, I am not satisfied with the setup and even if nginx memory footprint is pretty small, its webdav support is not really "clean" and full.
What would you recommend between SFTP, SCP and the current webdav solution ? I think SFTP is the closest solution but I still have to find out how to pass through my proxy ;) SCP seems quite limited as I read about it (only file transfers if I read right).
Cheers
How much data are you talking about? An explanation why dropbox or skydrive is not enough would help. – Nifle – 2010-05-27T22:25:54.237
FYI, both SFTP and SCP go over the same port, as they both use the SSH protocol as a transport. (You may be confusing it with FTPS, which is regular FTP over SSL.) – user1686 – 2010-05-28T08:11:56.203
1
@grawity Hum SCP is not SFTP. I am not confusing at all. See http://en.wikipedia.org/wiki/SSH_file_transfer_protocol. @nifle I want my data at home and not let someone manage it for me.
– Xavier Maillard – 2010-05-28T20:31:22.970