From: Alan T. DeKok Date: Wed, 7 Oct 2015 14:52:45 +0000 (-0400) Subject: Fix example X-Git-Tag: release_3_0_11~286 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56b09e03aa268814b5fa32da971aff6a71211647;p=thirdparty%2Ffreeradius-server.git Fix example --- diff --git a/raddb/sites-available/virtual.example.com b/raddb/sites-available/virtual.example.com index 211daab3af0..3c4aea7458c 100644 --- a/raddb/sites-available/virtual.example.com +++ b/raddb/sites-available/virtual.example.com @@ -10,17 +10,23 @@ ###################################################################### # -# Sample contents: just do everything that the default configuration does. -# -# You WILL want to edit this to your local needs. We suggest copying -# the "default" file here, and then editing it. That way, any -# changes to the "default" file will not affect this virtual server, -# and vice-versa. +# You will want to edit this to your local needs. We suggest copying +# the text from the "default" file here, and then editing the text. +# That way, any changes to the "default" file will not affect this +# virtual server, and vice-versa. # # When this virtual server receives the request, the original # attributes can be accessed as "outer.request", "outer.control", etc. # See "man unlang" for more details. # server virtual.example.com { -$INCLUDE ${confdir}/sites-available/default +authorize { + # insert policies here +} + +authenticate { + # insert policies here +} + +# etc. }