Hi,
I would like to control access to my proxy-server (apache 1.3 with mod_proxy
on Red.hat Linux) with radius.
I've succeeded to protect a directory on my webserver, but failed to protect
the server acting as a proxy. I do get a prompt for user-name and password
for my realm, but the server does not serve any page, I get a 404-response.
When I look into the radius log I don't see any request for a validation so
I don�t think that the radius module is called as it should.
This is what I have in my httpd.conf file, any suggestion?
:-)
# radius module inserted by GB
<IfModule mod_auth_radius.c>
AddRadiusAuth localhost:1812 testing123 5
AddRadiusCookieValid 5
</IfModule>
#this works
<Location /secret/>
AuthType Basic
AuthName "BIPS secret directory"
AuthAuthoritative off
AuthRadiusAuthoritative on
AuthRadiusCookieValid 5
require valid-user
</Location>
<IfModule mod_proxy.c>
ProxyRequests On
<Directory proxy:*>
#this doesn't work
AuthType Basic
AuthName "BIPS proxy"
AuthAuthoritative off
AuthRadiusAuthoritative on
AuthRadiusCookieValid 5
require valid-user
# Order deny,allow
# Deny from all
# Allow from .snabbast.com
</Directory>
ProxyVia On
#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
CacheRoot "/usr/local/apache/proxy"
CacheSize 5
CacheGcInterval 4
CacheMaxExpire 24
CacheLastModifiedFactor 0.1
CacheDefaultExpire 1
#NoCache a_domain.com another_domain.edu joes.garage_sale.com
</IfModule>
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]