[BlueOnyx:02693] anonymous FTP directory permissions
Eiji Hamano (bluequartz)
bluequartz at hypersys.ne.jp
Wed Oct 21 22:42:34 -05 2009
## If someone wanted to make changes to proftpd.conf, will it override
## using the GUI? I don't see any mentions of includes in the file. I have
## a customer that wants to remove the limitations on the incoming
## directory so all can view.
There is no way using the GUI. You must edit "proftpd conf file".
>> vi /etc/proftpd.conf
You can find "Anonymous Directory incoming tab" like as;
<Directory /home/.sites/@@/site@/ftp/incoming/*>
Umask 002
AllowOverwrite off <=== modify
<Limit STOR> <=== insert
AllowAll
</Limit>
<Limit READ DIRS>
DenyAll <=== modify
</Limit>
</Directory>
You modify to ;
<Directory /home/.sites/@@/site@/ftp/incoming/*>
Umask 002
AllowOverwrite on <=== modified
<Limit WRITE> <=== inserted
AllowAll <=== inserted
</Limit> <=== inserted
<Limit STOR>
AllowAll
</Limit>
<Limit READ DIRS>
AllowAll <=== modified
</Limit>
</Directory>
Eiji Hamano
More information about the Blueonyx
mailing list