C carlosribas macrumors newbie Original poster Jun 19, 2013 12 0 Sep 9, 2013 #1 Does anybody knows a good software to access the Home Directory using web? I currently have an SFTP server, but it is easier for users to access the server using the web than an SFTP client.
Does anybody knows a good software to access the Home Directory using web? I currently have an SFTP server, but it is easier for users to access the server using the web than an SFTP client.
K ktbartholomew macrumors newbie Sep 10, 2013 1 0 Sep 10, 2013 #2 This one-liner in the terminal should work, as long as you don't want anything too fancy: Code: cd && python -m SimpleHTTPServer 8000 You would then browse by going to <yourIPAdress>:8000
This one-liner in the terminal should work, as long as you don't want anything too fancy: Code: cd && python -m SimpleHTTPServer 8000 You would then browse by going to <yourIPAdress>:8000
C carlosribas macrumors newbie Original poster Jun 19, 2013 12 0 Sep 13, 2013 #3 ktbartholomew said: This one-liner in the terminal should work, as long as you don't want anything too fancy: Code: cd && python -m SimpleHTTPServer 8000 You would then browse by going to <yourIPAdress>:8000 Click to expand... Yes, seems enough to access via web, but thinking better, I want more than just access. I was checking this software: http://ajaxplorer.info/ I used it once in a Debian server and I liked it. I will try on Mac. Thanks.
ktbartholomew said: This one-liner in the terminal should work, as long as you don't want anything too fancy: Code: cd && python -m SimpleHTTPServer 8000 You would then browse by going to <yourIPAdress>:8000 Click to expand... Yes, seems enough to access via web, but thinking better, I want more than just access. I was checking this software: http://ajaxplorer.info/ I used it once in a Debian server and I liked it. I will try on Mac. Thanks.