/proftpd/sql.conf
http://github.com/brinkman83/bashrc · Config · 33 lines · 32 code · 1 blank · 0 comment · 0 complexity · b852b3a2aabdf94d5d7a2da1f696b959 MD5 · raw file
- #
- # Proftpd sample configuration for SQL-based authentication.
- #
- # (This is not to be used if you prefer a PAM-based SQL authentication)
- #
- <IfModule mod_sql.c>
- #
- # Choose a SQL backend among MySQL or PostgreSQL.
- # Both modules are loaded in default configuration, so you have to specify the backend
- # or comment out the unused module in /etc/proftpd/modules.conf.
- # Use 'mysql' or 'postgres' as possible values.
- #
- #SQLBackend mysql
- #
- #SQLEngine on
- #SQLAuthenticate on
- #
- # Use both a crypted or plaintext password
- #SQLAuthTypes Crypt Plaintext
- #
- # Use a backend-crypted or a crypted password
- #SQLAuthTypes Backend Crypt
- #
- # Connection
- #SQLConnectInfo proftpd@sql.example.com proftpd_user proftpd_password
- #
- # Describes both users/groups tables
- #
- #SQLUserInfo users userid passwd uid gid homedir shell
- #SQLGroupInfo groups groupname gid members
- #
- </IfModule>