Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Web file server

  1. #1
    Join Date
    Oct 2012
    Beans
    3

    Exclamation Web file server

    Hi,
    I'm looking to setup a web file server so no more than 10 friends can access some files.

    I need them to be able to access from web browser, most have IE but some have others.

    I need them to be able to upload and download the files and it needs to be password protected.

    Some people have already pushed me towards a windows home server system but I'm here to see if you can convince me otherwise

    I've got resonable IT experiance (not much with ubuntu thou).

    I have a spare computer if needed or my desktop.

    I need my friends access to be easy e.g. I want to send them a web address they go to log in with username and password and they can see the folders with files in.

    Any help or advice welcome I'm off for the next few days so I am free to have a play with Ubuntu.

    Thanks,

    J

  2. #2
    Join Date
    Apr 2008
    Location
    LOCATION=/dev/random
    Beans
    5,767
    Distro
    Ubuntu Development Release

    Re: Web file server

    I run AjaXplorer on my Ubuntu Server to access files through a web interface.
    Cheesemill

  3. #3
    Join Date
    Oct 2011
    Beans
    26

    Re: Web file server

    setup an ftp server like proftpd.

  4. #4
    Join Date
    Sep 2006
    Beans
    8,627
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Web file server

    If you have openssh-server already install then you already have SFTP and don't need to add anything for file transfer. As a bonus, SFTP is secure, unlike FTP:



    If you are looking to share access to some folders, you will have to set the appropriate group permissions.

    Code:
    sudo addgroup webmasters
    
    sudo chgrp -R webmasters /var/www
    
    sudo find /var/www -type d -exec chmod g=rwxs "{}" \;
    sudo find /var/www -type f -exec chmod g=rws "{}" \;
    
    sudo gpasswd --add hoube78 webmasters
    sudo gpasswd --add colleague1 webmasters
    sudo gpasswd --add colleague2 webmasters
    # etc.
    Once the permissions are set, then you can leave them.

  5. #5
    Join Date
    Oct 2012
    Beans
    3

    Lightbulb Re: Web file server

    Hi All,

    I'm not to comfrotable with ftp or sftp.... will my friends need to be able to access through a web browser? They wont install anything to their computers so it needs to be web browser base.

  6. #6
    Join Date
    Sep 2006
    Beans
    8,627
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Web file server

    The file managers Dolphin and Nautilus both have a SFTP built in. So they don't need to learn anything new to be able to upload files to the server. Just press ctrl-L and then enter the URI of the web page: sftp://user@xx.yy.zz.aa/some/path

    Otherwise Ajaxexplorer might be an option, but you will need to set up HTTPS first.

  7. #7
    Join Date
    Oct 2012
    Beans
    3

    Question Re: Web file server

    Quote Originally Posted by Cheesemill View Post
    I run AjaXplorer on my Ubuntu Server to access files through a web interface.
    I like the look of this, how easy is it to install on ubuntu etc?

    Will my friends be able to access using smart phones likie windows 7 and iphone?

  8. #8
    Join Date
    May 2009
    Beans
    118
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Web file server

    Ajaxplorer is easy to install, its just a web page you unpack in your www folder.
    Some tweaking with file permissions may be needed.
    There can also be some configuration needed depending on how large files you want to be able to upload.

    There is an official app available for iphone/ipad for ajaxplorer but i believe its not free.
    Don't know about Windows phones or Android.

  9. #9
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,791

    Re: Web file server

    Dropbox is probably the easiest.

  10. #10
    Join Date
    Sep 2011
    Location
    Behind you!
    Beans
    1,690
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Web file server

    There is also an option called OwnCloud.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •