summaryrefslogtreecommitdiff
blob: e494e00775e0bae9f4f65210a3242eb3501f8f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<IfDefine ROAMING>
  <IfModule !mod_roaming.c>
    LoadModule roaming_module    extramodules/mod_roaming.so
  </IfModule>
</IfDefine>

<IfModule roaming_module.c>

RoamingAlias /roaming /var/lib/mod_roaming

<Location /roaming>

	AuthUserFile /var/lib/mod_roaming/roaming-htpasswd
	AuthType Basic
	AuthName "Roaming Access"

	<Limit GET PUT MOVE DELETE>

		require valid-user

	</Limit>

</Location>

</IfModule>