source: src/django_gheat/httpd/maps.conf@ 11406

Last change on this file since 11406 was 11406, checked in by rick, 12 years ago

Re-install of heatmap on other server with Django 1.4

File size: 1.2 KB
RevLine 
[9556]1<VirtualHost *:80>
2 DocumentRoot /var/empty
[11406]3 ServerName wleiden.maps.vanderzwet.net
4 ServerAlias a.wleiden.maps.vanderzwet.net b.wleiden.maps.vanderzwet.net c.wleiden.maps.vanderzwet.net d.wleiden.maps.vanderzwet.net e.wleiden.maps.vanderzwet.net f.wleiden.maps.vanderzwet.net
[9556]5
[11406]6 ErrorLog /var/log/httpd/net.vanderzwet.maps.wleiden-error.log
7 CustomLog /var/log/httpd/net.vanderzwet.maps.wleiden-access.log common
[9556]8
9 <Directory /var/empty>
10 Allow from all
11 </Directory>
12
13 RedirectMatch temp ^/$ /d/wlheatmap/
14 Alias /d/static /usr/local/django_gheat/sitestatic
[10615]15 WSGIDaemonProcess maps processes=2 threads=15 display-name=%{GROUP}
16 WSGIProcessGroup maps
[9556]17 WSGIScriptAlias /d /usr/local/django_gheat/django.wsgi
18 <Directory /usr/local/django_gheat>
19 Order allow,deny
20 Allow from all
21 </Directory>
22
23 CacheEnable disk /d/wlheatmap/tile/
24
25
26 # 1 week
27 CacheDefaultExpire 604800
28 CacheRoot "/usr/local/var/httpd/cache/maps"
29 CacheDirLevels 2
30 CacheDirLength 1
31 CacheMaxFileSize 1000000
32 CacheMinFileSize 1
33 CacheIgnoreCacheControl On
34 CacheIgnoreNoLastMod On
35 CacheIgnoreQueryString Off
36 CacheIgnoreHeaders None
37 CacheLastModifiedFactor 0.1
38 CacheMaxExpire 86400
39 CacheStoreNoStore On
40 CacheStorePrivate On
41</VirtualHost>
42
43
Note: See TracBrowser for help on using the repository browser.