| |
SlimFTPd: Home | Tutorial | Clients | Config File | Config Anonymous | Plugins | |
|
Anonymous user configuration. |
For the majority of Internet users, FTP’s real power is transparent. At the click of a link, they can initiate an FTP server download; these users are anonymous never needing to provide a user name and password.
|
This part of the tutorial covers using SlimFTPd for anonymous user access. It is extremely easy to set up, provide a user profile with user name set to “anonymous” with a blank password and restrict access to read as shown to the right. |
<User "anonymous"> |
That essentially completes this part of the tutorial! If you are interested in a little more detail or want to run some examples read on.
I have a folder containing wave music files and would like to make these downloadable from a web page. The anonymous user profile has the following format:
|
Add the user profile on the right to the end of SlimFTPd’s configuration file. C:\uc_slimftpd_tutorial\slimftpd.conf |
<User "anonymous"> |
Note: For testing you can allow listing (Allow / Read List). This will allow you to see what’s mapped into the server root. Its not a security issue most download sites allow full listings it’s your site your choice.
All test pages are contained in folder C:\uc_slimftpd_tutorial\uc_tskill hence no need to create these. To run and html page double click on its file name it will be displayed in your browser.
|
Links: The page contains two links: href="ftp://localhost/boom_x.wav" Note: The mount command has mapped the wav folder into the server root. |
|
|
Run the page (double click on test1.html), click on either of the links and your browser will offer you the choice to either play (open) or save the file to disk.
Matching my music files I have a range of CD cover images. These are large images contained in a separate folder; I would like to make these download-able.
|
Modify SlimFTPd’s configuration as shown in bold. Note: I have added Allow List so you can see what is listed in the root. |
<User "anonymous"> |
Problem: At first sight the logic looks sound, map the folders across, they contain different file formats that will not conflict. In reality you may be mapping large folders across that do contain identical file names, hence the last folder listed is mapped to prevent conflicts.
Solution: For this simple case you could copy all the images into the wave file folder. However consider the consequence you have just doubled your image disk space. Earlier I mentioned these images were large now pop out and buy a new disk. The next example offers an alternative solution.
Adding sub-folders to the server root will resolve the above problem. You can use the same name as the folders being mapped e.g. wav and images or use alternative names top_ten_music blockbuster_images.
|
Modify SlimFTPd’s configuration as shown in bold. Note: The permissions of the root sub-folders top_ten_music and blockbuster_images inherit the root folders permissions "Allow / Read List". |
<User "anonymous"> |
Illusion: Well the user sees folders that do not exist on your disk.
Fine control: The sub-folders inherit privileges from the root folder “/” hence if for whatever reasons you want to prevent images being listed you can target that sub-folder and deny listing for example Deny /blockbuster_images List
All test pages are contained in folder C:\uc_slimftpd_tutorial\uc_tskill hence no need to create these. To run just double click on the file name it will be displayed in your browser.
|
Links: The page contains four links: href="ftp://localhost/top_ten_music/boom_x.wav Note: The mount command has created new sub-folders top_ten_music and blockbuster_images our real folder wav and images have been mapped into these respectively. |
|
|
Run the page (double click on test2.html).
After adding an anonymous user profile it is no longer possible to easily access individual accounts using a browser (user name password login pop-up not accessible).
An FTP server automatically logs into the anonymous account when its domain name is used for access. Individual accounts are accessible using their full FTP address, these look similar to an email address and have the following format:
ftp://username@ftp_domain_name e.g. http://fred@uniserver.com
FTP addresses for testing as follows:
Note: When using individual accounts you will notice a reduced login pop-up requires only a password.
That concludes this tutorial; I hope you found it of some use! The tutorial's FTP server as you have seen is a fully functioning stand-alone server and can be used independently of Uniform Server.
The server example using virtual hosts is important. A variant of it can be used when using SlimFTPd as a plugin.
The next page covers plugins for Uniform Server 3.5-Apollo and Uniform Server 3.3.
| | Ric |
Categories: UniCenter | New Users | Support | Installation | Security | Plugins