ProFTPD Direktiven

View allView all
DeutschDeutsch OfflineOffline
show also deprecated directives show also Betatest-directives
SearchSearch in  

I've found 1 directive(s) which contains AuthOrder

 
 NameAuthOrder 
SyntaxAuthOrder [ module-name...]
ContextServer config <Global> <VirtualHost>
Modulmod_core 
Standard
From version1.2.8rc1 and later
DescriptionThe AuthOrder directive rebuilds the tables of modules' authentication functions, reordering the tables such that only the listed modules' authentication functions are used, in the order in which the modules are listed.

At least one module name must be given; there is no maximum number of modules that can be listed. The listed module names must the full name of the source file, e.g. "mod_auth_unix.c".
Example 1# If the user's information is not in LDAP, 
# they're not a user to use this server. 
AuthOrder mod_ldap.c
Example 2# Use SQL tables first, then LDAP, for authentication 
AuthOrder mod_sql.c mod_ldap.c
05.00.2004 03:01
Go to top