Simple, mostly secure way to access files through a browser?

Soldato
Joined
22 Dec 2008
Posts
10,369
Location
England
I've been moving files to and from a server using rsync over ssh as and when required. This works excellently, provided at least scp is available. Occasionally however it would be useful to be able to access files through any web browser.

I'd like a password on this, but have no illusions regarding it being as secure as a box that only allows ssh traffic.

Apache is clearly capable of this, but seems wildly overkill. I think the added complexity will leave me with a program that takes far more effort to secure than I'm willing to put into this.

I'd therefore like to be pointed at the right tool for the job. http is preferred, ideally secure http, but ftp would be acceptable too. I'm hoping for something as straight forward as one text configuration file, one binary, and to access a directory specified in said configuration file through a password (which can also be written in plaintext in the config file).

Which program do I want? Cheers
 
Any particular reason why it has to be through a browser? SFTP would work nicely in Filezilla/WinSCP & you already have it set up.

FireFTP also supports SFTP IIRC - it's a Firefox plugin.
 
Sadly yes, I spend quite a lot of time at a university which doesn't offer much in the way of scp. I'm currently downloading files from dropbox.com, when I've remembered to put them there beforehand. Otherwise I'm using putty, which does in fairness work well enough.

A web interface feels tidier, that's probably the motivation for one. It would probably work through my phone too (opera).
 
Do they block SCP at Uni then? It's really going to be your best bet to transfer files through it. Secure, quick & already set up. Maybe move SSH to a different port such as 443. If they block 443 then nobody would be able to get onto https:// sites, so it should work for your SCP/SSH as well ;)

If you don't want to do that, then webservers such as 'mongoose' seem to be pretty good, however I don't know how secure it is. http://code.google.com/p/mongoose/
 
Back
Top Bottom