Advertisement
Guest User

Untitled

a guest
Aug 14th, 2017
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # This file is used to manage DSO modules and features.
  3. #
  4.  
  5. # This is the directory where DSO modules reside
  6.  
  7. ModulePath /usr/lib/proftpd
  8.  
  9. # Allow only user root to load and unload modules, but allow everyone
  10. # to see which modules have been loaded
  11.  
  12. ModuleControlsACLs insmod,rmmod allow user root
  13. ModuleControlsACLs lsmod allow user *
  14.  
  15. LoadModule mod_ctrls_admin.c
  16. LoadModule mod_tls.c
  17.  
  18. # Install one of proftpd-mod-mysql, proftpd-mod-pgsql or any other
  19. # SQL backend engine to use this module and the required backend.
  20. # This module must be mandatory loaded before anyone of
  21. # the existent SQL backeds.
  22. #LoadModule mod_sql.c
  23.  
  24. # Install proftpd-mod-ldap to use this
  25. #LoadModule mod_ldap.c
  26.  
  27. #
  28. # 'SQLBackend mysql' or 'SQLBackend postgres' directives are required
  29. # to have SQL authorization working. You can also comment out the
  30. # unused module here, in alternative.
  31. #
  32.  
  33. # Install proftpd-mod-mysql and decomment the previous
  34. # mod_sql.c module to use this.
  35. #LoadModule mod_sql_mysql.c
  36.  
  37. # Install proftpd-mod-pgsql and decommen the previous
  38. # mod_sql.c module to use this.
  39. #LoadModule mod_sql_postgres.c
  40.  
  41. # Install proftpd-mod-sqlite and decomment the previous
  42. # mod_sql.c module to use this
  43. #LoadModule mod_sql_sqlite.c
  44.  
  45. # Install proftpd-mod-odbc and decomment the previous
  46. # mod_sql.c moduleto use this
  47. #LoadModule mod_sql_odbc.c
  48.  
  49. LoadModule mod_radius.c
  50. LoadModule mod_quotatab.c
  51. LoadModule mod_quotatab_file.c
  52.  
  53. # Install proftpd-mod-ldap to use this
  54. #LoadModule mod_quotatab_ldap.c
  55.  
  56. # Install proftpd-mod-pgsql or proftpd-mod-mysql to use this
  57. #LoadModule mod_quotatab_sql.c
  58. LoadModule mod_quotatab_radius.c
  59. LoadModule mod_wrap.c
  60. LoadModule mod_rewrite.c
  61. LoadModule mod_load.c
  62. LoadModule mod_ban.c
  63. LoadModule mod_wrap2.c
  64. LoadModule mod_wrap2_file.c
  65. # Install proftpd-mod-pgsql or proftpd-mod-mysql to use this
  66. #LoadModule mod_wrap2_sql.c
  67. LoadModule mod_dynmasq.c
  68.  
  69.  
  70. # keep this module the last one
  71. LoadModule mod_ifsession.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement