SFTPGo: A Full Featured SFTP Server in Go
41–50 of 59 posts
Re: SFTPGo: A Full Featured SFTP Server in Go
#42Earlier quoted context omitted.
I'd second this, I've longed struggled to come up with a easy-to-deploy sshd/sftp/chroot configuration that permitted easy database-driven configuration w/o extra shell access. You have to fight a lot of defaults to get this just right. Would the OpenSSH upstream accept patches for an unprivileged sshd/sftp-subsystem to make this easier to use their battle tested code?
Proftpd can do sftp-only out of the box.
That means that there's no way to authenticate users if you use a password encryption scheme not supported by the bundled modules (like bcrypt for example)
Re: SFTPGo: A Full Featured SFTP Server in Go
#43Re: SFTPGo: A Full Featured SFTP Server in Go
#44This project looks to alleviate a lot of these problems.
It'd be great to be able to register webhooks so that it could send events to external systems. Ideally I'd like to know when a file is created/deleted etc without having to walk directories on the sftp server on a regular basis.
Re: SFTPGo: A Full Featured SFTP Server in Go
#45I've been avoiding starting a project myself which will require SFTP. Passing text files around via SFTP is how a lot of the world works. It's still painful to implement this, and makes the transfer of data slow (polling for new files to process etc). This introduces a big delay in any data feedback cycles. Managing users with system accounts is painful too. This project looks to alleviate a lot of these problems. It…
They way overcharge though. ($300/month)
Re: SFTPGo: A Full Featured SFTP Server in Go
#46Can this project be used as a library and integrated into an existing program? I am asking, b/c I am currently working on a little document management system for home-use. It looks like the only sane way to integrate with document scanners is (S)FTP upload or Email (SMPT). I have tried to use off-the-shelf FTP servers for this and inotify to get notified of new uploads. The the solutions work OK, but are hard to setu…
Re: SFTPGo: A Full Featured SFTP Server in Go
#47This looks like a very interesting project to make a lightweight sftp server, though the dependency on an SQL db makes it a bit harder to install. Go has a really good set of crypto primitives, an excellent ssh implementation maintained by the core team, and a great sftp server and client library which makes this project possible. I recently added an sftp server to rclone: https://rclone.org/commands/rclone_serve_sft…
Does it need to be relational? Perhaps boltdb could do it https://github.com/boltdb/bolt
Re: SFTPGo: A Full Featured SFTP Server in Go
#48Earlier quoted context omitted.
If you were planing on using this on a PaaS host where the file system is ephemeral this would be a non-starter.
What would the RL use case be for running this server, whose purpose is to facilitate transferring files from one computer's filesystem to another, on an ephemeral filesystem?
That being said if you really wanted to use sqlite for the database, you'd do the exact same thing, use a persistent volume.
Re: SFTPGo: A Full Featured SFTP Server in Go
#49I've been avoiding starting a project myself which will require SFTP. Passing text files around via SFTP is how a lot of the world works. It's still painful to implement this, and makes the transfer of data slow (polling for new files to process etc). This introduces a big delay in any data feedback cycles. Managing users with system accounts is painful too. This project looks to alleviate a lot of these problems. It…
Re: SFTPGo: A Full Featured SFTP Server in Go
#50Earlier quoted context omitted.
I'd second this, I've longed struggled to come up with a easy-to-deploy sshd/sftp/chroot configuration that permitted easy database-driven configuration w/o extra shell access. You have to fight a lot of defaults to get this just right. Would the OpenSSH upstream accept patches for an unprivileged sshd/sftp-subsystem to make this easier to use their battle tested code?
If you just want to share files and not giving the option to upload files, you could try graft... https://github.com/sandreas/graft graft serve ./*.txt will serve every txt file in the current dir...
> graft will prompt for a password, run an sftp server and promote it via zeroconf.
Is that a one time password that will be used by the "receiver" to download the file?