ansible/test/integration/targets/win_get_url/templates/slimftpd.conf.tmpl
Jordan Borean f75b7a9437
win_get_url: Fixed a few issues with using FTP and added tests (#39646)
* win_get_url: Fixed a few issues with using FTP and added tests

* Fixed typo in docs
2018-05-04 08:39:37 +10:00

28 lines
537 B
Cheetah

# http://www.wiki.uniformserver.com/index.php/SlimFTPd:_Config_File
BindInterface Local
BindPort 21
CommandTimeout 300
ConnectTimeout 15
MaxConnections 20
LookupHosts On
<User "anonymous">
Password ""
Mount / {{test_win_get_url_path}}\ftp
Allow /anon All
Deny /user All
Deny /user-pass All
</User>
<User "username">
Mount / {{test_win_get_url_path}}\ftp
Allow /anon All
Allow /user All
Deny /user-pass All
</User>
<User "userpass">
Password "password"
Mount / {{test_win_get_url_path}}\ftp
Allow / All
</User>