mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
29 lines
537 B
Cheetah
29 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>
|