blob: 3c4aea7458cca50c9f43f33e6aebd5ca08180de7 (
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
27
28
29
30
31
32
|
# -*- text -*-
######################################################################
#
# Sample virtual server for internally proxied requests.
#
# See the "realm virtual.example.com" example in "proxy.conf".
#
# $Id$
#
######################################################################
#
# 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 {
authorize {
# insert policies here
}
authenticate {
# insert policies here
}
# etc.
}
|