-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.json
31 lines (21 loc) · 953 Bytes
/
config.json
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
/** json configuration for paleoserver */
/** warning the format of this file is in contant flux */
{
/** required: directory to register mapnik fonts */
"fonts" : "/usr/local/lib/mapnik/fonts/",
/** required: directory to register mapnik input plugins */
"plugins" : "/usr/local/lib/mapnik/input/",
/** required: number of threads to support - should match roughly number of CPU + 1 */
"threads" : 2,
/** required: address to bind to */
"address" : "0.0.0.0",
/** required: port to bind to */
"port" : "8000",
/** required: document root of server */
"doc_root" : ".",
/** required: mapnik xml stylesheet to load */
"stylesheet" : "demo/world_latlon.xml"
// optional: limit all requests to given extent (must be in request srs)
//"max_extent" : "-180,60,180,60"
/** NOTE: last option cannot end with trailing comma */
}