-
Notifications
You must be signed in to change notification settings - Fork 2
/
mapnik.conf
49 lines (37 loc) · 1.58 KB
/
mapnik.conf
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
48
49
#-----------------------------------------------------------------------------
#
# Konfiguration for Mapnik renderer
#
# /etc/tirex/renderer/mapnik.conf
#
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# General configuration
#-----------------------------------------------------------------------------
# symbolic name
name=mapnik
# path to executable of renderer
path=/usr/libexec/tirex-backend-mapnik
# UDP port where the master can contact this renderer
# must be individual for each renderer
port=9331
# number of processes that should be started
procs=3
# syslog facility
syslog_facility=daemon
# activate this to see debug messages from renderer
debug=1
#-----------------------------------------------------------------------------
# Backend specific configuration
#-----------------------------------------------------------------------------
# Directory with input plugins for mapnik. The directory of your mapnik
# installation can be retrieved by this command: mapnik-config --input-plugins
plugindir=/usr/local/lib/mapnik/input
# The directory where the Mapnik rendering engine loads its TrueType fonts from.
# If the style sheet references fonts that are not present here, the renderer will
# throw an exception.
fontdir=/usr/share/fonts
# Set this to 1 if you want fonts loaded recursively from directories
# inside the mapnik_fontdir directory. Defaults to 0.
fontdir_recurse=1
#-- THE END ------------------------------------------------------------------