How do I connect to SFTP server with web browser?

I just created an SFTP file server using tutorial

Now I want to share the files to the third party so that they can download them using the username and password. The problem is that I don't know the URL for my FTP/SFTP site because I am very new to FTP.

I can see the URL on the FileZilla as sftp://. When I hit this URL on the browser, this doesn't open the FTP file directory.

What should be the URL that will point to my FTP file directory?

0

2 Answers

SFTP and FTP are two completely different and incompatible protocols. Do not mix those two.

No major web browser support SFTP (at least not without any addin).

The "third party" need to use a proper SFTP client.

Some SFTP clients can register to handle sftp:// URLs. You will then be able to paste SFTP file URL to a web browser and the browser will open the SFTP client to download the file.

For example WinSCP does register for handling of sftp:// URLs. (I'm the author of WinSCP)

FileZilla does not.

2

You need to use an SFTP client that works from a browser which is exactly what I've built:

Also the application is open source

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like