summaryrefslogtreecommitdiffstats
path: root/auth_xradius.conf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-08-02 10:27:36 +0200
committerRemi Collet <fedora@famillecollet.com>2012-08-02 10:27:36 +0200
commit7eb0164469a58a67053d99d582ed0f05c9179d83 (patch)
tree68979351e9dc85feb93a2eeec43652a4cc94b11e /auth_xradius.conf
mod_auth_xradius: import from rawhide
Diffstat (limited to 'auth_xradius.conf')
-rw-r--r--auth_xradius.conf50
1 files changed, 50 insertions, 0 deletions
diff --git a/auth_xradius.conf b/auth_xradius.conf
new file mode 100644
index 0000000..2a2128e
--- /dev/null
+++ b/auth_xradius.conf
@@ -0,0 +1,50 @@
+LoadModule auth_xradius_module modules/mod_auth_xradius.so
+
+<IfModule mod_auth_xradius.c>
+
+
+ ## The Cache for mod_auth_xradius must be configured globally.
+ ## If you do not want Authentication Caching, set:
+ # AuthXRadiusCache none -
+
+ ## A Local DBM Based Cache (low performance)
+ # AuthXRadiusCache dbm "conf/auth_xradius_cache"
+
+ ## Only a Single memcached Server
+ AuthXRadiusCache memcache "127.0.0.1"
+ ## Multiple memcached Servers
+ # AuthXRadiusCache memcache "127.0.0.1 10.0.0.10 10.0.0.11 10.0.0.11:11212"
+
+ ## Time in Seconds that an entry will be cached.
+ AuthXRadiusCacheTimeout 300
+
+ <Directory "/path/to/my/docroot">
+ ## All of the directives inside the <Directory> block can be placed
+ ## inside '.htaccess' files.
+
+ ## This is what the client sees in their Prompt.
+ AuthName "Private Area"
+
+ ## Type of authentication to use.
+ AuthType basic
+
+ ## Address and the Shared Secret of the RADIUS Server to contact.
+ AuthXRadiusAddServer "localhost:1812" "super-secret"
+ ## Multiple Servers can be added in the same context.
+ # AuthXRadiusAddServer "10.0.0.10:1812" "2secrets"
+ # AuthXRadiusAddServer "10.0.0.11:1812" "secret1"
+
+ ## Time in Seconds to wait for replies from the RADIUS Servers
+ AuthXRadiusTimeout 2
+
+ ## Number of times to resend a request to a server if no reply is received.
+ AuthXRadiusRetries 2
+
+ ## This tells apache that we want a valid user and password.
+ require valid-user
+
+ AuthBasicProvider xradius
+ </Directory>
+
+</IfModule>
+