The feature everyone's been waiting for.
[freeradius.git] / raddb / radiusd.conf.in
1 # -*- text -*-
2 ##
3 ## radiusd.conf -- FreeRADIUS server configuration file.
4 ##
5 ##      http://www.freeradius.org/
6 ##      $Id$
7 ##
8
9 ######################################################################
10 #
11 #       Read "man radiusd" before editing this file.  See the section
12 #       titled DEBUGGING.  It outlines a method where you can quickly
13 #       obtain the configuration you want, without running into
14 #       trouble.
15 #
16 #       Run the server in debugging mode, and READ the output.
17 #
18 #               $ radiusd -X
19 #
20 #       We cannot emphasize this point strongly enough.  The vast
21 #       majority of problems can be solved by carefully reading the
22 #       debugging output, which includes warnings about common issues,
23 #       and suggestions for how they may be fixed.
24 #
25 #       There may be a lot of output, but look carefully for words like:
26 #       "warning", "error", "reject", or "failure".  The messages there
27 #       will usually be enough to guide you to a solution.
28 #
29 #       If you are going to ask a question on the mailing list, then
30 #       explain what you are trying to do, and include the output from
31 #       debugging mode (radiusd -X).  Failure to do so means that all
32 #       of the responses to your question will be people telling you
33 #       to "post the output of radiusd -X".
34
35 ######################################################################
36 #
37 #       The location of other config files and logfiles are declared
38 #       in this file.
39 #
40 #       Also general configuration for modules can be done in this
41 #       file, it is exported through the API to modules that ask for
42 #       it.
43 #
44 #       See "man radiusd.conf" for documentation on the format of this
45 #       file.  Note that the individual configuration items are NOT
46 #       documented in that "man" page.  They are only documented here,
47 #       in the comments.
48 #
49 #       As of 2.0.0, FreeRADIUS supports a simple processing language
50 #       in the "authorize", "authenticate", "accounting", etc. sections.
51 #       See "man unlang" for details.
52 #
53
54 prefix = @prefix@
55 exec_prefix = @exec_prefix@
56 sysconfdir = @sysconfdir@
57 localstatedir = @localstatedir@
58 sbindir = @sbindir@
59 logdir = @logdir@
60 raddbdir = @raddbdir@
61 radacctdir = @radacctdir@
62
63 #  Location of config and logfiles.
64 confdir = ${raddbdir}
65 run_dir = ${localstatedir}/run/radiusd
66
67 # Should likely be ${localstatedir}/lib/radiusd
68 db_dir = ${raddbdir}
69
70 #
71 # libdir: Where to find the rlm_* modules.
72 #
73 #   This should be automatically set at configuration time.
74 #
75 #   If the server builds and installs, but fails at execution time
76 #   with an 'undefined symbol' error, then you can use the libdir
77 #   directive to work around the problem.
78 #
79 #   The cause is usually that a library has been installed on your
80 #   system in a place where the dynamic linker CANNOT find it.  When
81 #   executing as root (or another user), your personal environment MAY
82 #   be set up to allow the dynamic linker to find the library.  When
83 #   executing as a daemon, FreeRADIUS MAY NOT have the same
84 #   personalized configuration.
85 #
86 #   To work around the problem, find out which library contains that symbol,
87 #   and add the directory containing that library to the end of 'libdir',
88 #   with a colon separating the directory names.  NO spaces are allowed.
89 #
90 #   e.g. libdir = /usr/local/lib:/opt/package/lib
91 #
92 #   You can also try setting the LD_LIBRARY_PATH environment variable
93 #   in a script which starts the server.
94 #
95 #   If that does not work, then you can re-configure and re-build the
96 #   server to NOT use shared libraries, via:
97 #
98 #       ./configure --disable-shared
99 #       make
100 #       make install
101 #
102 libdir = @libdir@
103
104 #  pidfile: Where to place the PID of the RADIUS server.
105 #
106 #  The server may be signalled while it's running by using this
107 #  file.
108 #
109 #  This file is written when ONLY running in daemon mode.
110 #
111 #  e.g.:  kill -HUP `cat /var/run/radiusd/radiusd.pid`
112 #
113 pidfile = ${run_dir}/radiusd.pid
114
115 #  chroot: directory where the server does "chroot".
116 #
117 #  The chroot is done very early in the process of starting the server.
118 #  After the chroot has been performed it switches to the "user" listed
119 #  below (which MUST be specified).  If "group" is specified, it switchs
120 #  to that group, too.  Any other groups listed for the specified "user"
121 #  in "/etc/group" are also added as part of this process.
122 #
123 #  The current working directory (chdir / cd) is left *outside* of the
124 #  chroot until all of the modules have been initialized.  This allows
125 #  the "raddb" directory to be left outside of the chroot.  Once the
126 #  modules have been initialized, it does a "chdir" to ${logdir}.  This
127 #  means that it should be impossible to break out of the chroot.
128 #
129 #  If you are worried about security issues related to this use of chdir,
130 #  then simply ensure that the "raddb" directory is inside of the chroot,
131 #  end be sure to do "cd raddb" BEFORE starting the server.
132 #
133 #  If the server is statically linked, then the only files that have
134 #  to exist in the chroot are ${run_dir} and ${logdir}.  If you do the
135 #  "cd raddb" as discussed above, then the "raddb" directory has to be
136 #  inside of the chroot directory, too.
137 #
138 #chroot = /path/to/chroot/directory
139
140 # user/group: The name (or #number) of the user/group to run radiusd as.
141 #
142 #   If these are commented out, the server will run as the user/group
143 #   that started it.  In order to change to a different user/group, you
144 #   MUST be root ( or have root privleges ) to start the server.
145 #
146 #   We STRONGLY recommend that you run the server with as few permissions
147 #   as possible.  That is, if you're not using shadow passwords, the
148 #   user and group items below should be set to radius'.
149 #
150 #  NOTE that some kernels refuse to setgid(group) when the value of
151 #  (unsigned)group is above 60000; don't use group nobody on these systems!
152 #
153 #  On systems with shadow passwords, you might have to set 'group = shadow'
154 #  for the server to be able to read the shadow password file.  If you can
155 #  authenticate users while in debug mode, but not in daemon mode, it may be
156 #  that the debugging mode server is running as a user that can read the
157 #  shadow info, and the user listed below can not.
158 #
159 #  The server will also try to use "initgroups" to read /etc/groups.
160 #  It will join all groups where "user" is a member.  This can allow
161 #  for some finer-grained access controls.
162 #
163 #user = radius
164 #group = radius
165
166 #  max_request_time: The maximum time (in seconds) to handle a request.
167 #
168 #  Requests which take more time than this to process may be killed, and
169 #  a REJECT message is returned.
170 #
171 #  WARNING: If you notice that requests take a long time to be handled,
172 #  then this MAY INDICATE a bug in the server, in one of the modules
173 #  used to handle a request, OR in your local configuration.
174 #
175 #  This problem is most often seen when using an SQL database.  If it takes
176 #  more than a second or two to receive an answer from the SQL database,
177 #  then it probably means that you haven't indexed the database.  See your
178 #  SQL server documentation for more information.
179 #
180 #  Useful range of values: 5 to 120
181 #
182 max_request_time = 30
183
184 #  cleanup_delay: The time to wait (in seconds) before cleaning up
185 #  a reply which was sent to the NAS.
186 #
187 #  The RADIUS request is normally cached internally for a short period
188 #  of time, after the reply is sent to the NAS.  The reply packet may be
189 #  lost in the network, and the NAS will not see it.  The NAS will then
190 #  re-send the request, and the server will respond quickly with the
191 #  cached reply.
192 #
193 #  If this value is set too low, then duplicate requests from the NAS
194 #  MAY NOT be detected, and will instead be handled as seperate requests.
195 #
196 #  If this value is set too high, then the server will cache too many
197 #  requests, and some new requests may get blocked.  (See 'max_requests'.)
198 #
199 #  Useful range of values: 2 to 10
200 #
201 cleanup_delay = 5
202
203 #  max_requests: The maximum number of requests which the server keeps
204 #  track of.  This should be 256 multiplied by the number of clients.
205 #  e.g. With 4 clients, this number should be 1024.
206 #
207 #  If this number is too low, then when the server becomes busy,
208 #  it will not respond to any new requests, until the 'cleanup_delay'
209 #  time has passed, and it has removed the old requests.
210 #
211 #  If this number is set too high, then the server will use a bit more
212 #  memory for no real benefit.
213 #
214 #  If you aren't sure what it should be set to, it's better to set it
215 #  too high than too low.  Setting it to 1000 per client is probably
216 #  the highest it should be.
217 #
218 #  Useful range of values: 256 to infinity
219 #
220 max_requests = 1024
221
222 #  listen: Make the server listen on a particular IP address, and send
223 #  replies out from that address. This directive is most useful for
224 #  hosts with multiple IP addresses on one interface.
225 #
226 #  If you want the server to listen on additional addresses, or on
227 #  additionnal ports, you can use multiple "listen" sections.
228 #
229 #  Each section make the server listen for only one type of packet,
230 #  therefore authentication and accounting have to be configured in
231 #  different sections.
232 #
233 #  The server ignore all "listen" section if you are using '-i' and '-p'
234 #  on the command line.
235 #
236 listen {
237         #  Type of packets to listen for.
238         #  Allowed values are:
239         #       auth    listen for authentication packets
240         #       acct    listen for accounting packets
241         #       proxy   IP to use for sending proxied packets
242         #       detail  Read from the detail file.  For examples, see
243         #               raddb/sites-available/copy-acct-to-home-server
244         #
245         type = auth
246
247         #  Note: "type = proxy" lets you control the source IP used for
248         #        proxying packets, with some limitations:
249         #
250         #    * Only ONE proxy listener can be defined.
251         #    * A proxy listener CANNOT be used in a virtual server section.
252         #    * You should probably set "port = 0".
253         #    * Any "clients" configuration will be ignored.
254
255         #  IP address on which to listen.
256         #  Allowed values are:
257         #       dotted quad (1.2.3.4)
258         #       hostname    (radius.example.com)
259         #       wildcard    (*)
260         ipaddr = *
261
262         #  OR, you can use an IPv6 address, but not both
263         #  at the same time.
264 #       ipv6addr = ::   # any.  ::1 == localhost
265
266         #  Port on which to listen.
267         #  Allowed values are:
268         #       integer port number (1812)
269         #       0 means "use /etc/services for the proper port"
270         port = 0
271
272         #  Some systems support binding to an interface, in addition
273         #  to the IP address.  This feature isn't strictly necessary,
274         #  but for sites with many IP addresses on one interface,
275         #  it's useful to say "listen on all addresses for eth0".
276         #
277         #  If your system does not support this feature, you will
278         #  get an error if you try to use it.
279         #
280 #       interface = eth0
281
282         #  Per-socket lists of clients.  This is a very useful feature.
283         #
284         #  The name here is a reference to a section elsewhere in
285         #  radiusd.conf, or clients.conf.  Having the name as
286         #  a reference allows multiple sockets to use the same
287         #  set of clients.
288         #
289         #  If this configuration is used, then the global list of clients
290         #  is IGNORED for this "listen" section.  Take care configuring
291         #  this feature, to ensure you don't accidentally disable a
292         #  client you need.
293         #
294         #  See clients.conf for the configuration of "per_socket_clients".
295         #
296 #       clients = per_socket_clients
297 }
298
299 #  This second "listen" section is for listening on the accounting
300 #  port, too.
301 #
302 listen {
303         ipaddr = *
304 #       ipv6addr = ::
305         port = 0
306         type = acct
307 #       interface = eth0
308 #       clients = per_socket_clients
309 }
310
311 #  hostname_lookups: Log the names of clients or just their IP addresses
312 #  e.g., www.freeradius.org (on) or 206.47.27.232 (off).
313 #
314 #  The default is 'off' because it would be overall better for the net
315 #  if people had to knowingly turn this feature on, since enabling it
316 #  means that each client request will result in AT LEAST one lookup
317 #  request to the nameserver.   Enabling hostname_lookups will also
318 #  mean that your server may stop randomly for 30 seconds from time
319 #  to time, if the DNS requests take too long.
320 #
321 #  Turning hostname lookups off also means that the server won't block
322 #  for 30 seconds, if it sees an IP address which has no name associated
323 #  with it.
324 #
325 #  allowed values: {no, yes}
326 #
327 hostname_lookups = no
328
329 #  Core dumps are a bad thing.  This should only be set to 'yes'
330 #  if you're debugging a problem with the server.
331 #
332 #  allowed values: {no, yes}
333 #
334 allow_core_dumps = no
335
336 #  Regular expressions
337 #
338 #  These items are set at configure time.  If they're set to "yes",
339 #  then setting them to "no" turns off regular expression support.
340 #
341 #  If they're set to "no" at configure time, then setting them to "yes"
342 #  WILL NOT WORK.  It will give you an error.
343 #
344 regular_expressions     = @REGEX@
345 extended_expressions    = @REGEX_EXTENDED@
346
347 #
348 #  Logging section.  The various "log_*" configuration items
349 #  will eventually be moved here.
350 #
351 log {
352         #
353         #  Destination for log messages.  This can be one of:
354         #
355         #       files - log to "file", as defined below.
356         #       syslog - to syslog (see also the "syslog_facility", below.
357         #       stdout - standard output
358         #       stderr - standard error.
359         #
360         #  The command-line option "-X" over-rides this option, and forces
361         #  logging to go to stdout.
362         #
363         destination = files
364
365         #
366         #  The logging messages for the server are appended to the
367         #  tail of this file if ${destination} == "files"
368         #
369         #  If the server is running in debugging mode, this file is
370         #  NOT used.
371         #
372         file = ${logdir}/radius.log
373
374         #
375         #  Which syslog facility to use, if ${destination} == "syslog"
376         #
377         #  The exact values permitted here are OS-dependent.  You probably
378         #  don't want to change this.
379         #
380         syslog_facility = daemon
381
382         #  Log the full User-Name attribute, as it was found in the request.
383         #
384         # allowed values: {no, yes}
385         #
386         stripped_names = no
387
388         #  Log authentication requests to the log file.
389         #
390         #  allowed values: {no, yes}
391         #
392         auth = no
393
394         #  Log passwords with the authentication requests.
395         #  auth_badpass  - logs password if it's rejected
396         #  auth_goodpass - logs password if it's correct
397         #
398         #  allowed values: {no, yes}
399         #
400         auth_badpass = no
401         auth_goodpass = no
402 }
403
404 #  The program to execute to do concurrency checks.
405 checkrad = ${sbindir}/checkrad
406
407 # SECURITY CONFIGURATION
408 #
409 #  There may be multiple methods of attacking on the server.  This
410 #  section holds the configuration items which minimize the impact
411 #  of those attacks
412 #
413 security {
414         #
415         #  max_attributes: The maximum number of attributes
416         #  permitted in a RADIUS packet.  Packets which have MORE
417         #  than this number of attributes in them will be dropped.
418         #
419         #  If this number is set too low, then no RADIUS packets
420         #  will be accepted.
421         #
422         #  If this number is set too high, then an attacker may be
423         #  able to send a small number of packets which will cause
424         #  the server to use all available memory on the machine.
425         #
426         #  Setting this number to 0 means "allow any number of attributes"
427         max_attributes = 200
428
429         #
430         #  reject_delay: When sending an Access-Reject, it can be
431         #  delayed for a few seconds.  This may help slow down a DoS
432         #  attack.  It also helps to slow down people trying to brute-force
433         #  crack a users password.
434         #
435         #  Setting this number to 0 means "send rejects immediately"
436         #
437         #  If this number is set higher than 'cleanup_delay', then the
438         #  rejects will be sent at 'cleanup_delay' time, when the request
439         #  is deleted from the internal cache of requests.
440         #
441         #  Useful ranges: 1 to 5
442         reject_delay = 1
443
444         #
445         #  status_server: Whether or not the server will respond
446         #  to Status-Server requests.
447         #
448         #  When sent a Status-Server message, the server responds with
449         #  an Access-Accept or Accounting-Response packet.
450         #
451         #  This is mainly useful for administrators who want to "ping"
452         #  the server, without adding test users, or creating fake
453         #  accounting packets.
454         #
455         #  It's also useful when a NAS marks a RADIUS server "dead".
456         #  The NAS can periodically "ping" the server with a Status-Server
457         #  packet.  If the server responds, it must be alive, and the
458         #  NAS can start using it for real requests.
459         #
460         status_server = yes
461 }
462
463 # PROXY CONFIGURATION
464 #
465 #  proxy_requests: Turns proxying of RADIUS requests on or off.
466 #
467 #  The server has proxying turned on by default.  If your system is NOT
468 #  set up to proxy requests to another server, then you can turn proxying
469 #  off here.  This will save a small amount of resources on the server.
470 #
471 #  If you have proxying turned off, and your configuration files say
472 #  to proxy a request, then an error message will be logged.
473 #
474 #  To disable proxying, change the "yes" to "no", and comment the
475 #  $INCLUDE line.
476 #
477 #  allowed values: {no, yes}
478 #
479 proxy_requests  = yes
480 $INCLUDE proxy.conf
481
482
483 # CLIENTS CONFIGURATION
484 #
485 #  Client configuration is defined in "clients.conf".  
486 #
487
488 #  The 'clients.conf' file contains all of the information from the old
489 #  'clients' and 'naslist' configuration files.  We recommend that you
490 #  do NOT use 'client's or 'naslist', although they are still
491 #  supported.
492 #
493 #  Anything listed in 'clients.conf' will take precedence over the
494 #  information from the old-style configuration files.
495 #
496 $INCLUDE clients.conf
497
498
499 # SNMP CONFIGURATION
500 #
501 #  Snmp configuration is only valid if SNMP support was enabled
502 #  at compile time.
503 #
504 #  To enable SNMP querying of the server, set the value of the
505 #  'snmp' attribute to 'yes'
506 #
507 snmp    = no
508 $INCLUDE snmp.conf
509
510
511 # THREAD POOL CONFIGURATION
512 #
513 #  The thread pool is a long-lived group of threads which
514 #  take turns (round-robin) handling any incoming requests.
515 #
516 #  You probably want to have a few spare threads around,
517 #  so that high-load situations can be handled immediately.  If you
518 #  don't have any spare threads, then the request handling will
519 #  be delayed while a new thread is created, and added to the pool.
520 #
521 #  You probably don't want too many spare threads around,
522 #  otherwise they'll be sitting there taking up resources, and
523 #  not doing anything productive.
524 #
525 #  The numbers given below should be adequate for most situations.
526 #
527 thread pool {
528         #  Number of servers to start initially --- should be a reasonable
529         #  ballpark figure.
530         start_servers = 5
531
532         #  Limit on the total number of servers running.
533         #
534         #  If this limit is ever reached, clients will be LOCKED OUT, so it
535         #  should NOT BE SET TOO LOW.  It is intended mainly as a brake to
536         #  keep a runaway server from taking the system with it as it spirals
537         #  down...
538         #
539         #  You may find that the server is regularly reaching the
540         #  'max_servers' number of threads, and that increasing
541         #  'max_servers' doesn't seem to make much difference.
542         #
543         #  If this is the case, then the problem is MOST LIKELY that
544         #  your back-end databases are taking too long to respond, and
545         #  are preventing the server from responding in a timely manner.
546         #
547         #  The solution is NOT do keep increasing the 'max_servers'
548         #  value, but instead to fix the underlying cause of the
549         #  problem: slow database, or 'hostname_lookups=yes'.
550         #
551         #  For more information, see 'max_request_time', above.
552         #
553         max_servers = 32
554
555         #  Server-pool size regulation.  Rather than making you guess
556         #  how many servers you need, FreeRADIUS dynamically adapts to
557         #  the load it sees, that is, it tries to maintain enough
558         #  servers to handle the current load, plus a few spare
559         #  servers to handle transient load spikes.
560         #
561         #  It does this by periodically checking how many servers are
562         #  waiting for a request.  If there are fewer than
563         #  min_spare_servers, it creates a new spare.  If there are
564         #  more than max_spare_servers, some of the spares die off.
565         #  The default values are probably OK for most sites.
566         #
567         min_spare_servers = 3
568         max_spare_servers = 10
569
570         #  There may be memory leaks or resource allocation problems with
571         #  the server.  If so, set this value to 300 or so, so that the
572         #  resources will be cleaned up periodically.
573         #
574         #  This should only be necessary if there are serious bugs in the
575         #  server which have not yet been fixed.
576         #
577         #  '0' is a special value meaning 'infinity', or 'the servers never
578         #  exit'
579         max_requests_per_server = 0
580 }
581
582 # MODULE CONFIGURATION
583 #
584 #  The names and configuration of each module is located in this section.
585 #
586 #  After the modules are defined here, they may be referred to by name,
587 #  in other sections of this configuration file.
588 #
589 modules {
590         #
591         #  Each module has a configuration as follows:
592         #
593         #       name [ instance ] {
594         #               config_item = value
595         #               ...
596         #       }
597         #
598         #  The 'name' is used to load the 'rlm_name' library
599         #  which implements the functionality of the module.
600         #
601         #  The 'instance' is optional.  To have two different instances
602         #  of a module, it first must be referred to by 'name'.
603         #  The different copies of the module are then created by
604         #  inventing two 'instance' names, e.g. 'instance1' and 'instance2'
605         #
606         #  The instance names can then be used in later configuration
607         #  INSTEAD of the original 'name'.  See the 'radutmp' configuration
608         #  for an example.
609         #
610
611         #
612         #  As of 2.0.5, most of the module configurations are in a
613         #  sub-directory.  Files matching the regex /[a-zA-Z0-9_.]+/
614         #  are loaded.  The modules are initialized ONLY if they are
615         #  referenced in a processing section, such as authorize,
616         #  authenticate, accounting, pre/post-proxy, etc.
617         #
618         $INCLUDE ${confdir}/modules/
619
620         #  Extensible Authentication Protocol
621         #
622         #  For all EAP related authentications.
623         #  Now in another file, because it is very large.
624         #
625         $INCLUDE eap.conf
626
627         #  Include another file that has the SQL-related configuration.
628         #  This is another file only because it tends to be big.
629         #
630         $INCLUDE sql.conf
631
632         #
633         #  This module is an SQL enabled version of the counter module.
634         #
635         #  Rather than maintaining seperate (GDBM) databases of
636         #  accounting info for each counter, this module uses the data
637         #  stored in the raddacct table by the sql modules. This
638         #  module NEVER does any database INSERTs or UPDATEs.  It is
639         #  totally dependent on the SQL module to process Accounting
640         #  packets.
641         #
642         $INCLUDE sql/mysql/counter.conf
643         #$INCLUDE sql/postgresql/counter.conf
644
645         #
646         #  IP addresses managed in an SQL table.
647         #
648         #$INCLUDE sqlippool.conf
649
650         # OTP token support.  Not included by default.
651         # $INCLUDE otp.conf
652
653 }
654
655 # Instantiation
656 #
657 #  This section orders the loading of the modules.  Modules
658 #  listed here will get loaded BEFORE the later sections like
659 #  authorize, authenticate, etc. get examined.
660 #
661 #  This section is not strictly needed.  When a section like
662 #  authorize refers to a module, it's automatically loaded and
663 #  initialized.  However, some modules may not be listed in any
664 #  of the following sections, so they can be listed here.
665 #
666 #  Also, listing modules here ensures that you have control over
667 #  the order in which they are initalized.  If one module needs
668 #  something defined by another module, you can list them in order
669 #  here, and ensure that the configuration will be OK.
670 #
671 instantiate {
672         #
673         #  Allows the execution of external scripts.
674         #  The entire command line (and output) must fit into 253 bytes.
675         #
676         #  e.g. Framed-Pool = `%{exec:/bin/echo foo}`
677         exec
678
679         #
680         #  The expression module doesn't do authorization,
681         #  authentication, or accounting.  It only does dynamic
682         #  translation, of the form:
683         #
684         #       Session-Timeout = `%{expr:2 + 3}`
685         #
686         #  So the module needs to be instantiated, but CANNOT be
687         #  listed in any other section.  See 'doc/rlm_expr' for
688         #  more information.
689         #
690         expr
691
692         #
693         # We add the counter module here so that it registers
694         # the check-name attribute before any module which sets
695         # it
696 #       daily
697         expiration
698         logintime
699
700         # subsections here can be thought of as "virtual" modules.
701         #
702         # e.g. If you have two redundant SQL servers, and you want to
703         # use them in the authorize and accounting sections, you could
704         # place a "redundant" block in each section, containing the
705         # exact same text.  Or, you could uncomment the following
706         # lines, and list "redundant_sql" in the authorize and
707         # accounting sections.
708         #
709         #redundant redundant_sql {
710         #       sql1
711         #       sql2
712         #}
713 }
714
715 ######################################################################
716 #
717 #       Policies that can be applied in multiple places are listed
718 #       globally.  That way, they can be defined once, and referred
719 #       to multiple times.
720 #
721 ######################################################################
722 $INCLUDE policy.conf
723
724 ######################################################################
725 #
726 #       As of 2.0.0, the "authorize", "authenticate", etc. sections
727 #       are in separate configuration files, per virtual host.
728 #
729 ######################################################################
730
731 ######################################################################
732 #
733 #       Include all enabled virtual hosts.
734 #
735 #       The following directory is searched for files that match
736 #       the regex:
737 #
738 #               /[a-zA-Z0-9_.]+/
739 #
740 #       The files are then included here, just as if they were cut
741 #       and pasted into this file.
742 #
743 #       See "sites-enabled/default" for some additional documentation.
744 #
745 $INCLUDE sites-enabled/