Comment on How do you manage your server files?
kevincox@lemmy.ml 8 months agoYup super confusing. The way I remember it is that https
is http
+ SSL so ftps
is ftp
+ SSL. The weird one sftp
is an entirely different protocol that uses SSH to transfer files.
blotz@lemmy.world 8 months ago
Okay this has made it so much worse. i figured that the
s
inhttps
andftps
stands forsecure
like a reasonable person. of course it doesnt xD. you would think that this is at least consistent but alas. guess whats
inssh
doesnt stand for :)kevincox@lemmy.ml 8 months ago
I don’t know if the
s
is actually “SSL” or “secure” but the point is that the are the same protocol, running over an encryption layer. So adding ans
suffix is running the same protocol over some encrypted transport. You see thiss
suffix for lots of things likeirc
/ircs
anddav
/davs
.This is different to
sftp
which isn’t related toftp
at all other than they are both protocols that transfer files.