Advertisement
soder

conf

May 22nd, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. MasqueradeAddress 127.0.0.1
  2. ServerName "ProFTPD on OpenELEC"
  3. ServerType standalone
  4. DefaultServer on
  5. UseReverseDNS off
  6. ServerIdent on "OpenELEC"
  7. Port 6868
  8. RootLogin off
  9. ListOptions "-il"
  10. MaxClients 10
  11. MaxHostsPerUser 1
  12. MaxClientsPerHost 2
  13. Umask 022
  14. MaxInstances 10
  15. User root
  16. Group root
  17. DefaultRoot ~
  18. AllowForeignAddress on
  19.  
  20. TransferLog /storage/.xbmc/userdata/addon_data/service.system.proftpd/transfer_log.txt
  21. ExtendedLog /storage/.xbmc/userdata/addon_data/service.system.proftpd/extended_log.txt
  22. SystemLog /storage/.xbmc/userdata/addon_data/service.system.proftpd/system_log.txt
  23.  
  24. # Trace DEFAULT:10
  25. # TraceLog /storage/.xbmc/userdata/addon_data/service.system.proftpd/trace_log
  26.  
  27. AuthGroupFile /etc/group
  28. AuthUserFile /var/config/proftpd.passwd
  29. RequireValidShell off
  30. AuthOrder mod_auth_unix.c mod_auth_file.c*
  31. UseFtpUsers off
  32. PersistentPasswd off
  33.  
  34. <Global>
  35. Umask 022
  36. TimesGMT off
  37. DenyFilter \*.*/
  38. PassivePorts 4000 4999
  39. </Global>
  40.  
  41. <Directory /*>
  42. AllowOverwrite on
  43. AllowStoreRestart on
  44. AllowRetrieveRestart on
  45. </Directory>
  46.  
  47. <IfModule mod_tls.c>
  48. TLSEngine on
  49. # Support both SSLv3 and TLSv1
  50. TLSProtocol SSLv3 TLSv1
  51. TLSRequired off
  52. TLSVerifyClient off
  53. TLSOptions NoSessionReuseRequired
  54. TLSRSACertificateFile /storage/.xbmc/userdata/addon_data/service.system.proftpd/proftpd.cert.pem
  55. TLSRSACertificateKeyFile /storage/.xbmc/userdata/addon_data/service.system.proftpd/proftpd.key.pem
  56. </IfModule>
  57.  
  58. #<IfModule mod_lang.c>
  59. # UseEncoding utf8 cp1251
  60. #</IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement