-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.xml
More file actions
47 lines (39 loc) · 1.14 KB
/
configuration.xml
File metadata and controls
47 lines (39 loc) · 1.14 KB
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
42
43
44
45
46
47
<?xml version="1.0" ?>
<Options>
<General>
<Daemon>False</Daemon>
</General>
<Server>
<Host>localhost</Host>
<Port>5001</Port>
</Server>
<Logger>
<LogFile>/var/log/spatialcache.log</LogFile>
<FailsafeLogFile>/tmp/spatialcache.log</FailsafeLogFile>
<!-- In bytes, 0 = unlimited -->
<LogMaxLenght>0</LogMaxLenght>
<SMTPHost>localhost</SMTPHost>
<EmailSender>sender@example.com</EmailSender>
<!-- Comma separated list of email receivers (user1@domain.com, user2@domain.com, ...)-->
<EmailReceivers>receiver@example.com</EmailReceivers>
<!-- Log levels None, Debug, Info, Warning, Error, Critical -->
<FileLogLevel>Info</FileLogLevel>
<SMTPLogLevel>None</SMTPLogLevel>
</Logger>
<Tiles>
<WMS>http://localhost:8180/wms?</WMS>
<TilesPath>/tmp/spatialcache</TilesPath>
<!--
Which parameters should be used to order cached files
Parameters are case sensitive, as recommended in the RFC
http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3
-->
<Filters>
<Filter>
<Name>LAYERS</Name>
<Order>1</Order>
<Hash>False</Hash>
</Filter>
</Filters>
</Tiles>
</Options>