An error occurred while loading the file. Please try again.
-
Côme Chilliet authored
URI and base are now two separate fields of referrals in config file, so several URIs space separated may be used in URI field and no parsing has to be done. Changes should be backward compatible issue #5752
d81da2b3
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
33
34
35
36
37
38
39
40
41
{"<?"}{literal}xml version="1.0"{/literal}{"?>"}
<conf>
<!-- Main section **********************************************************
The main section defines global settings, which might be overridden by
each location definition inside.
For more information about the configuration parameters, take a look at
the FusionDirectory.conf(5) manual page.
-->
<main default="{$cv.location}"
{if $cv.fdLogging}
logging="TRUE"
{else}
logging="FALSE"
{/if}
{if $cv.fdDisplayErrors}
displayErrors="TRUE"
{else}
displayErrors="FALSE"
{/if}
{if $cv.fdForceSSL}
forceSSL="TRUE"
{else}
forceSSL="FALSE"
{/if}
templateCompileDirectory="{$templateCompileDirectory}"
debugLevel="{$cv.debugLevel}"
>
<!-- Location definition -->
<location name="{$cv.location}"
{if $cv.tls}
ldapTLS="TRUE"
{/if}
>
<referral URI="{$cv.connection}" base="{$cv.base}"
adminDn="{$cv.admin}"
adminPassword="{$cv.password}" />
</location>
</main>
</conf>