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

Last change on this file since 10615 was 10615, checked in by rick, 13 years ago

Weed out whole bunch of unused code, to avoid huge dependency listing.

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