mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
537 B
Cheetah
29 lines
537 B
Cheetah
7 years ago
|
# 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>
|