-
Notifications
You must be signed in to change notification settings - Fork 2
/
Configuration.html
35162 lines (35046 loc) · 532 KB
/
Configuration.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Configuration Directive List</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"></HEAD
><BODY
CLASS="BOOK"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="BOOK"
><A
NAME="PROFTPD-CONFIG"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="TITLE"
><A
NAME="AEN2"
>Configuration Directive List</A
></H1
><HR></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Table of Contents</B
></DT
><DT
>1. <A
HREF="#AEN4"
>List of Directives</A
></DT
><DD
><DL
><DT
><A
HREF="#ACCESSDENYMSG"
> AccessDenyMsg</A
> -- Customise the response on failed authentication</DT
><DT
><A
HREF="#ACCESSGRANTMSG"
> AccessGrantMsg</A
> -- Customise the response on successful authentication</DT
><DT
><A
HREF="#ALLOW"
> Allow</A
> -- Access control directive</DT
><DT
><A
HREF="#ALLOWALL"
> AllowAll</A
> -- Allow all clients </DT
><DT
><A
HREF="#ALLOWCLASS"
> AllowClass</A
> -- Class based allow rules</DT
><DT
><A
HREF="#ALLOWFILTER"
> AllowFilter</A
> -- Regular expression of command arguments to be accepted</DT
><DT
><A
HREF="#ALLOWFOREIGNADDRESS"
> AllowForeignAddress</A
> -- Control the use of the PORT command</DT
><DT
><A
HREF="#ALLOWGROUP"
> AllowGroup</A
> -- Group based allow rules</DT
><DT
><A
HREF="#ALLOWLOGSYMLINKS"
> AllowLogSymlinks</A
> -- Permit logging to symlinked files</DT
><DT
><A
HREF="#ALLOWOVERRIDE"
> AllowOverride</A
> -- Toggles handling of .ftpaccess files</DT
><DT
><A
HREF="#ALLOWOVERWRITE"
> AllowOverwrite</A
> -- Enable files to be overwritten</DT
><DT
><A
HREF="#ALLOWRETRIEVERESTART"
> AllowRetrieveRestart</A
> -- Allow clients to resume downloads</DT
><DT
><A
HREF="#ALLOWSTORERESTART"
> AllowStoreRestart</A
> -- Allow clients to resume uploads</DT
><DT
><A
HREF="#ALLOWUSER"
> AllowUser</A
> -- User based allow rules</DT
><DT
><A
HREF="#ANONRATIO"
> AnonRatio</A
> -- Ratio directive</DT
><DT
><A
HREF="#ANONREJECTPASSWORDS"
> AnonRejectPasswords</A
> -- Block certain anonymous user passwords</DT
><DT
><A
HREF="#ANONREQUIREPASSWORD"
> AnonRequirePassword</A
> -- Make anonymous users supply a valid password</DT
><DT
><A
HREF="#ANONYMOUS"
> Anonymous</A
> -- Define an anonymous server</DT
><DT
><A
HREF="#ANONYMOUSGROUP"
> AnonymousGroup</A
> -- Treat group members as anonymous users</DT
><DT
><A
HREF="#AUTHALIASONLY"
> AuthAliasOnly</A
> -- Allow only aliased login names</DT
><DT
><A
HREF="#AUTHGROUPFILE"
> AuthGroupFile</A
> -- Specify alternate group file</DT
><DT
><A
HREF="#AUTHORDER"
> AuthOrder</A
> -- Configure auth module checking order</DT
><DT
><A
HREF="#AUTHPAM"
> AuthPAM</A
> -- Enable/Disable PAM authentication</DT
><DT
><A
HREF="#AUTHPAMCONFIG"
> AuthPAMConfig</A
> -- Select PAM service name</DT
><DT
><A
HREF="#AUTHUSERFILE"
> AuthUserFile</A
> -- Specify alternate passwd file</DT
><DT
><A
HREF="#AUTHUSINGALIAS"
> AuthUsingAlias</A
> -- Authenticate via Alias-name instead of mapped username</DT
><DT
><A
HREF="#BIND"
> Bind</A
> -- Bind the server or Virtualhost to a specific IP address [deprecated]</DT
><DT
><A
HREF="#BYTERATIOERRMSG"
> ByteRatioErrMsg</A
> -- Ratio directive</DT
><DT
><A
HREF="#CAPABILITIESENGINE"
> CapabilitiesEngine</A
> -- Enable/disable mod_cap</DT
><DT
><A
HREF="#CAPABILITIESSET"
> CapabilitiesSet</A
> -- Configure the set of Linux capabilities processed</DT
><DT
><A
HREF="#CDPATH"
> CDPath</A
> -- Sets "search paths" for the cd command</DT
><DT
><A
HREF="#CLASS"
> Class</A
> -- Define a class of client connections</DT
><DT
><A
HREF="#COMMANDBUFFERSIZE"
> CommandBufferSize</A
> -- Limit the maximum command length</DT
><DT
><A
HREF="#CREATEHOME"
> CreateHome</A
> -- Create and populate users' home directories as needed</DT
><DT
><A
HREF="#CWDRATIOMSG"
> CwdRatioMsg</A
> -- Ratio directive</DT
><DT
><A
HREF="#DEBUGLEVEL"
> DebugLevel</A
> -- Set the debugging output level</DT
><DT
><A
HREF="#DEFAULTADDRESS"
> DefaultAddress</A
> -- Set the address for the server to listen on</DT
><DT
><A
HREF="#DEFAULTCHDIR"
> DefaultChdir</A
> -- Set starting directory for FTP sessions</DT
><DT
><A
HREF="#DEFAULTROOT"
> DefaultRoot</A
> -- Sets default chroot directory</DT
><DT
><A
HREF="#DEFAULTSERVER"
> DefaultServer</A
> -- Set the default server</DT
><DT
><A
HREF="#DEFAULTTRANSFERMODE"
> DefaultTransferMode</A
> -- Set the default method of data transfer</DT
><DT
><A
HREF="#DEFERWELCOME"
> DeferWelcome</A
> -- Don't show welcome message until user has authenticated</DT
><DT
><A
HREF="#DEFINE"
> Define</A
> -- Initialises Defines for IfDefine</DT
><DT
><A
HREF="#DELAYENGINE"
> DelayEngine</A
> -- Control the use of mod_delay</DT
><DT
><A
HREF="#DELAYTABLE"
> DelayTable</A
> -- Sets the name and path of the file used as the timing
table</DT
><DT
><A
HREF="#DELETEABORTEDSTORES"
> DeleteAbortedStores</A
> -- Enable automatic deletion of partially uploaded HiddenStores files</DT
><DT
><A
HREF="#DENY"
> Deny</A
> -- Access control directive</DT
><DT
><A
HREF="#DENYALL"
> DenyAll</A
> -- Deny all clients</DT
><DT
><A
HREF="#DENYCLASS"
> DenyClass</A
> -- Class based deny rules</DT
><DT
><A
HREF="#DENYFILTER"
> DenyFilter</A
> -- Regular expression of command arguments to be blocked</DT
><DT
><A
HREF="#DENYGROUP"
> DenyGroup</A
> -- Group based deny rules</DT
><DT
><A
HREF="#DENYUSER"
> DenyUser</A
> -- User based deny rules</DT
><DT
><A
HREF="#DIRECTORY"
> Directory</A
> -- Directory-limited configuration directives</DT
><DT
><A
HREF="#DIRFAKEGROUP"
> DirFakeGroup</A
> -- Hide real file/directory group</DT
><DT
><A
HREF="#DIRFAKEMODE"
> DirFakeMode</A
> -- Hide real file/directory permissions</DT
><DT
><A
HREF="#DIRFAKEUSER"
> DirFakeUser</A
> -- Hide real file/directory owner</DT
><DT
><A
HREF="#DISPLAYCHDIR"
> DisplayChdir</A
> -- Set the file to display when entering a directory</DT
><DT
><A
HREF="#DISPLAYCONNECT"
> DisplayConnect</A
> -- Sets connect banner file</DT
><DT
><A
HREF="#DISPLAYFILETRANSFER"
> DisplayFileTransfer</A
> -- FIXFIXFIX</DT
><DT
><A
HREF="#DISPLAYGOAWAY"
> DisplayGoAway</A
> -- Set the file to display to a rejected connection</DT
><DT
><A
HREF="#DISPLAYLOGIN"
> DisplayLogin</A
> -- Set the file to display on login</DT
><DT
><A
HREF="#DISPLAYQUIT"
> DisplayQuit</A
> -- Set the file to display on quit</DT
><DT
><A
HREF="#DISPLAYREADME"
> DisplayReadme</A
> -- Enable display of file modification times on a file pattern</DT
><DT
><A
HREF="#EXTENDEDLOG"
> ExtendedLog</A
> -- Specify custom logfiles</DT
><DT
><A
HREF="#FILERATIOERRMSG"
> FileRatioErrMsg</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#GLOBAL"
> Global</A
> -- Set some directives to apply across the entire daemon</DT
><DT
><A
HREF="#GROUP"
> Group</A
> -- Set the group the server normally runs as</DT
><DT
><A
HREF="#GROUPOWNER"
> GroupOwner</A
> -- Change default group for new files and directories</DT
><DT
><A
HREF="#GROUPRATIO"
> GroupRatio</A
> -- Ratio directive</DT
><DT
><A
HREF="#HIDDENSTORES"
> HiddenStores</A
> -- Enables more safe file uploads</DT
><DT
><A
HREF="#HIDEFILES"
> HideFiles</A
> -- Enable hiding of files based on regular expressions</DT
><DT
><A
HREF="#HIDEGROUP"
> HideGroup</A
> -- Enable hiding of files based on group owner</DT
><DT
><A
HREF="#HIDENOACCESS"
> HideNoAccess</A
> -- Block the listing of directory entries to which the user
has no access permissions</DT
><DT
><A
HREF="#HIDEUSER"
> HideUser</A
> -- Enable hiding of files based on user owner</DT
><DT
><A
HREF="#HOSTRATIO"
> HostRatio</A
> -- Ratio directive</DT
><DT
><A
HREF="#IDENTLOOKUPS"
> IdentLookups</A
> -- Toggle ident lookups</DT
><DT
><A
HREF="#IFDEFINE"
> IfDefine</A
> -- To control the use of sections of the configuration</DT
><DT
><A
HREF="#IFMODULE"
> IfModule</A
> -- Parse a section of config based on module name</DT
><DT
><A
HREF="#IGNOREHIDDEN"
> IgnoreHidden</A
> -- Treat 'hidden' files as if they don't exist</DT
><DT
><A
HREF="#INCLUDE"
> Include</A
> -- Load additional configuration directives from a file</DT
><DT
><A
HREF="#LDAPALIASDEREFERENCE"
> LDAPAliasDereference</A
> -- Specify how LDAP alias dereferencing is done</DT
><DT
><A
HREF="#LDAPATTR"
> LDAPAttr</A
> -- Map LDAP Attributes to something non standard</DT
><DT
><A
HREF="#LDAPAUTHBINDS"
> LDAPAuthBinds</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#LDAPDEFAULTAUTHSCHEME"
> LDAPDefaultAuthScheme</A
> -- Set the authentication scheme/hash that is used when no leading
{hashname} is present.
</DT
><DT
><A
HREF="#LDAPDEFAULTGID"
> LDAPDefaultGID</A
> -- Set the default GID to be assigned to users when no uidNumber
attribute is found.
</DT
><DT
><A
HREF="#LDAPDEFAULTUID"
> LDAPDefaultUID</A
> -- Set the default UID to be assigned to users when no uidNumber
attribute is found.
</DT
><DT
><A
HREF="#LDAPDNINFO"
> LDAPDNInfo</A
> -- Set DN information to be used for initial bind</DT
><DT
><A
HREF="#LDAPDOAUTH"
> LDAPDoAuth</A
> -- Enable LDAP authentication</DT
><DT
><A
HREF="#LDAPDOGIDLOOKUPS"
> LDAPDoGIDLookups</A
> -- Enable LDAP lookups for user group membership and GIDs in
directory listings
</DT
><DT
><A
HREF="#LDAPDOQUOTALOOKUPS"
> LDAPDoQuotaLookups</A
> -- Enable LDAP quota limit support</DT
><DT
><A
HREF="#LDAPDOUIDLOOKUPS"
> LDAPDoUIDLookups</A
> -- Enable LDAP lookups for UIDs in directory listings
</DT
><DT
><A
HREF="#LDAPFORCEDEFAULTGID"
> LDAPForceDefaultGID</A
> -- Force all LDAP-authenticated users to use the same GID.</DT
><DT
><A
HREF="#LDAPFORCEDEFAULTUID"
> LDAPForceDefaultUID</A
> -- Force all LDAP-authenticated users to use the same UID.</DT
><DT
><A
HREF="#LDAPFORCEGENERATEDHOMEDIR"
> LDAPForceGeneratedHomedir</A
> -- Force all LDAP-authenticated users to use the default HomeDironDemand
prefix/suffix.
</DT
><DT
><A
HREF="#LDAPFORCEHOMEDIRONDEMAND"
> LDAPForceHomedirOnDemand</A
> -- Force all LDAP-authenticated users to use the default HomeDironDemand
prefix/suffix. [deprecated]
</DT
><DT
><A
HREF="#LDAPGENERATEHOMEDIR"
> LDAPGenerateHomedir</A
> -- Enable the creation of user home directories on demand
</DT
><DT
><A
HREF="#LDAPGENERATEHOMEDIRPREFIX"
> LDAPGenerateHomedirPrefix</A
> -- Enable the creation of user home directories on demand
</DT
><DT
><A
HREF="#LDAPGENERATEHOMEDIRPREFIXNOUSERNAME"
> LDAPGenerateHomedirPrefixNoUsername</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#LDAPGROUPS"
> LDAPGroups</A
> -- Enable LDAP lookups for user group membership and GIDs in
directory listings
</DT
><DT
><A
HREF="#LDAPHOMEDIRONDEMAND"
> LDAPHomedirOnDemand</A
> -- Enable the creation of user home directories on demand [deprecated]
</DT
><DT
><A
HREF="#LDAPHOMEDIRONDEMANDPREFIX"
> LDAPHomedirOnDemandPrefix</A
> -- Enable the creation of user home directories on demand [deprecated]
</DT
><DT
><A
HREF="#LDAPHOMEDIRONDEMANDPREFIXNOUSERNAME"
> LDAPHomedirOnDemandPrefixNoUsername</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#LDAPHOMEDIRONDEMANDSUFFIX"
> LDAPHomedirOnDemandSuffix</A
> -- Specify an additional directory to be created inside a user's
home directory on demand. [deprecated]
</DT
><DT
><A
HREF="#LDAPNEGATIVECACHE"
> LDAPNegativeCache</A
> -- Enable negative caching for LDAP lookups</DT
><DT
><A
HREF="#LDAPPROTOCOLVERSION"
> LDAPProtocolVersion</A
> -- Set the LDAP protocol version</DT
><DT
><A
HREF="#LDAPQUERYTIMEOUT"
> LDAPQueryTimeout</A
> -- Set a timeout for LDAP queries</DT
><DT
><A
HREF="#LDAPSEARCHSCOPE"
> LDAPSearchScope</A
> -- Specify the search scope used in LDAP queries</DT
><DT
><A
HREF="#LDAPSERVER"
> LDAPServer</A
> -- Specify the LDAP server to use for lookups</DT
><DT
><A
HREF="#LDAPUSERS"
> LDAPUsers</A
> -- Enable LDAP authentication/user lookups</DT
><DT
><A
HREF="#LDAPUSETLS"
> LDAPUseTLS</A
> -- Enable TLS/SSL connections to the LDAP server.</DT
><DT
><A
HREF="#LEECHRATIOMSG"
> LeechRatioMsg</A
> -- Sets the 'over ratio' error message</DT
><DT
><A
HREF="#LIMIT"
> Limit</A
> -- Set the commands/actions to be controlled</DT
><DT
><A
HREF="#LISTOPTIONS"
> ListOptions</A
> -- Configure options used when listing directories</DT
><DT
><A
HREF="#LOGFORMAT"
> LogFormat</A
> -- Specify a logging format</DT
><DT
><A
HREF="#MASQUERADEADDRESS"
> MasqueradeAddress</A
> -- Configure the server address presented to clients</DT
><DT
><A
HREF="#MAXCLIENTS"
> MaxClients</A
> -- Limits the number of users that can connect</DT
><DT
><A
HREF="#MAXCLIENTSPERCLASS"
> MaxClientsPerClass</A
> -- Limit the number of connections per class</DT
><DT
><A
HREF="#MAXCLIENTSPERHOST"
> MaxClientsPerHost</A
> -- Limits the connections per client machine</DT
><DT
><A
HREF="#MAXCLIENTSPERUSER"
> MaxClientsPerUser</A
> -- Limit the number of connections per userid</DT
><DT
><A
HREF="#MAXCONNECTIONRATE"
> MaxConnectionRate</A
> -- Maximum TCP socket connection rate</DT
><DT
><A
HREF="#MAXCONNECTIONSPERHOST"
> MaxConnectionsPerHost</A
> -- Limits the unauthenticated connections per client machine</DT
><DT
><A
HREF="#MAXHOSTSPERUSER"
> MaxHostsPerUser</A
> -- Limit the number of connections per userid</DT
><DT
><A
HREF="#MAXINSTANCES"
> MaxInstances</A
> -- Sets the maximum number of child processes to be spawned</DT
><DT
><A
HREF="#MAXLOGINATTEMPTS"
> MaxLoginAttempts</A
> -- Sets how many password attempts are allowed before disconnection</DT
><DT
><A
HREF="#MAXRETRIEVEFILESIZE"
> MaxRetrieveFileSize</A
> -- Restrict size of downloaded files</DT
><DT
><A
HREF="#MAXSTOREFILESIZE"
> MaxStoreFileSize</A
> -- Restrict size of uploaded files</DT
><DT
><A
HREF="#MULTILINERFC2228"
> MultilineRFC2228</A
> -- Enable RFC2228 multiline response mode</DT
><DT
><A
HREF="#ORDER"
> Order</A
> -- Configures the precedence of the Limit directives</DT
><DT
><A
HREF="#PASSIVEPORTS"
> PassivePorts</A
> -- Specify the ftp-data port range to be used</DT
><DT
><A
HREF="#PATHALLOWFILTER"
> PathAllowFilter</A
> -- Only allow new files which match a specified pattern</DT
><DT
><A
HREF="#PATHDENYFILTER"
> PathDenyFilter</A
> -- Disallow new files which match a specified pattern</DT
><DT
><A
HREF="#PERSISTENTPASSWD"
> PersistentPasswd</A
> -- Sets handling of unix auth files</DT
><DT
><A
HREF="#PIDFILE"
> PidFile</A
> -- Set the filepath to hold the pid of the master server</DT
><DT
><A
HREF="#PORT"
> Port</A
> -- Set the port for the control socket</DT
><DT
><A
HREF="#RADIUSACCTSERVER"
> RadiusAcctServer</A
> -- Setup RADIUS accounting details</DT
><DT
><A
HREF="#RADIUSAUTHSERVER"
> RadiusAuthServer</A
> -- Setup RADIUS authenticator details</DT
><DT
><A
HREF="#RADIUSENGINE"
> RadiusEngine</A
> -- Enable RADIUS support</DT
><DT
><A
HREF="#RADIUSLOG"
> RadiusLog</A
> -- Specify the logfile for reporting / debugging</DT
><DT
><A
HREF="#RADIUSREALM"
> RadiusRealm</A
> -- Setup the authentication realm</DT
><DT
><A
HREF="#RADIUSUSERINFO"
> RadiusUserInfo</A
> -- Configure login information via RADIUS</DT
><DT
><A
HREF="#RATIOFILE"
> RatioFile</A
> -- Ratio directive</DT
><DT
><A
HREF="#RATIOS"
> Ratios</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#RATIOTEMPFILE"
> RatioTempFile</A
> -- Ratio directive</DT
><DT
><A
HREF="#REQUIREVALIDSHELL"
> RequireValidShell</A
> -- Allow connections based on /etc/shells</DT
><DT
><A
HREF="#REWRITECONDITION"
> RewriteCondition</A
> -- Define a rule condition</DT
><DT
><A
HREF="#REWRITEENGINE"
> RewriteEngine</A
> -- Enable/disable mod_rewrite</DT
><DT
><A
HREF="#REWRITELOCK"
> RewriteLock</A
> -- Set the filename for synchronization lockfile</DT
><DT
><A
HREF="#REWRITELOG"
> RewriteLog</A
> -- Specify a log file for mod_rewrite reporting</DT
><DT
><A
HREF="#REWRITEMAP"
> RewriteMap</A
> -- Define a rewrite map</DT
><DT
><A
HREF="#REWRITERULE"
> RewriteRule</A
> -- Define a rewrite rule</DT
><DT
><A
HREF="#RLIMITCPU"
> RLimitCPU</A
> -- Configure the maximum CPU time in seconds used by a process</DT
><DT
><A
HREF="#RLIMITMEMORY"
> RLimitMemory</A
> -- Configure the maximum memory in bytes used by a process</DT
><DT
><A
HREF="#RLIMITOPENFILES"
> RLimitOpenFiles</A
> -- Configure the maximum number of open files used by a process</DT
><DT
><A
HREF="#ROOTLOGIN"
> RootLogin</A
> -- Permit root user logins</DT
><DT
><A
HREF="#ROOTREVOKE"
> RootRevoke</A
> -- Drop root privileges completely</DT
><DT
><A
HREF="#SAVERATIOS"
> SaveRatios</A
> -- FIXME FIXME</DT
><DT
><A
HREF="#SCOREBOARDFILE"
> ScoreboardFile</A
> -- Sets the name and path of the scoreboard file</DT
><DT
><A
HREF="#SERVERADMIN"
> ServerAdmin</A
> -- Set the address for the server admin</DT
><DT
><A
HREF="#SERVERIDENT"
> ServerIdent</A
> -- Set the message displayed on connect</DT
><DT
><A
HREF="#SERVERLOG"
> ServerLog</A
> -- Configure logs on a per-server basis</DT
><DT
><A
HREF="#SERVERNAME"
> ServerName</A
> -- Configure the name displayed to connecting users</DT
><DT
><A
HREF="#SERVERTYPE"
> ServerType</A
> -- Set the mode proftpd runs in</DT
><DT
><A
HREF="#SETENV"
> SetEnv</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#SHOWSYMLINKS"
> ShowSymlinks</A
> -- Toggle the display of symlinks</DT
><DT
><A
HREF="#SOCKETBINDTIGHT"
> SocketBindTight</A
> -- Controls how TCP/IP sockets are created</DT
><DT
><A
HREF="#SOCKETOPTIONS"
> SocketOptions</A
> -- Tune socket-level options</DT
><DT
><A
HREF="#SQLAUTHENTICATE"
> SQLAuthenticate</A
> -- Specify authentication methods and what to authenticate
</DT
><DD
><DL
><DT
><A
HREF="#AEN8470"
>Group Table Structure</A
></DT
></DL
></DD
><DT
><A
HREF="#SQLAUTHTYPES"
> SQLAuthTypes</A
> -- Specify the allowed authentication types and their check order</DT
><DT
><A
HREF="#SQLBACKEND"
> SQLBackend</A
> -- Set the SQL backend module</DT
><DT
><A
HREF="#SQLCONNECTINFO"
> SQLConnectInfo</A
> -- Specify connection information for the backend</DT
><DT
><A
HREF="#SQLDEFAULTGID"
> SQLDefaultGID</A
> -- Configure the default GID for users</DT
><DT
><A
HREF="#SQLDEFAULTHOMEDIR"
> SQLDefaultHomedir</A
> -- Configure the default homedir</DT
><DT
><A
HREF="#SQLDEFAULTUID"
> SQLDefaultUID</A
> -- Configure the default UID for users</DT
><DT
><A
HREF="#SQLENGINE"
> SQLEngine</A
> -- Configure how mod_sql will operate</DT
><DT
><A
HREF="#SQLGROUPINFO"
> SQLGroupInfo</A
> -- Configure the group table and fields that hold group information</DT
><DT
><A
HREF="#SQLGROUPWHERECLAUSE"
> SQLGroupWhereClause</A
> -- Configure a WHERE clause for every group query</DT
><DT
><A
HREF="#SQLLOG"
> SQLLog</A
> -- Log information to a database table</DT
><DT
><A
HREF="#SQLLOGFILE"
> SQLLogFile</A
> -- Specify a log file for mod_sql reporting and debugging</DT
><DT
><A
HREF="#SQLMINID"
> SQLMinID</A
> -- Set SQLMinUserGID and SQLMinUserID in one place</DT
><DT
><A
HREF="#SQLMINUSERGID"
> SQLMinUserGID</A
> -- Set a minimum GID</DT
><DT
><A
HREF="#SQLMINUSERUID"
> SQLMinUserUID</A
> -- Set a minimum UID</DT
><DT
><A
HREF="#SQLNAMEDQUERY"
> SQLNamedQuery</A
> -- Specify a query and an identifier for SQLShowInfo and SQLLog</DT
><DT
><A
HREF="#SQLNEGATIVECACHE"
> SQLNegativeCache</A
> -- Enable negative caching for SQL lookups</DT
><DT
><A
HREF="#SQLRATIOS"
> SQLRatios</A
> -- (docs incomplete)</DT
><DT
><A
HREF="#SQLRATIOSTATS"
> SQLRatioStats</A