-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtileserver_site.conf
32 lines (25 loc) · 1.24 KB
/
tileserver_site.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
<VirtualHost *:80>
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/tileserver_error.log
CustomLog ${APACHE_LOG_DIR}/tileserver_access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
ModTileRenderdSocketName /var/lib/tirex/modtile.sock
ModTileTileDir /var/lib/mod_tile
AddTileConfig /tiles/osmbright osmbright
AddTileConfig /tiles/osmcarto osmcarto
ModTileRequestTimeout 0
ModTileMissingRequestTimeout 60
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet