79868225b7
mod_roaming has been updated for Apache2. This is a new port to add this new version of mod_roaming depending on Apache2. The existing mod_roaming is still necessary for Apache 1.3.x. PR: ports/38155 Submitted by: Vivek Khera <vivek@kciLink.com>
20 lines
540 B
Text
20 lines
540 B
Text
#
|
|
# Example configuration for the mod_roaming module
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/www/mod_roaming2/files/Attic/httpd.conf.mod_roaming,v 1.1 2003-01-17 07:52:32 edwin Exp $
|
|
#
|
|
|
|
LoadModule roaming_module libexec/apache/mod_roaming.so
|
|
|
|
AddModule mod_roaming.c
|
|
|
|
<IfModule mod_roaming.c>
|
|
RoamingAlias /roaming /usr/local/etc/apache/roaming
|
|
|
|
<Location /roaming>
|
|
AuthUserFile /usr/local/etc/apache/roaming-htpasswd
|
|
AuthType Basic
|
|
AuthName "Roaming Access"
|
|
require valid-user
|
|
</Location>
|
|
</IfModule>
|