blob: 3eeec9547de375b4f3f22c97237bad76beccec17 (
plain)
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
|
[Modules]
;AssetCaching = "CoreAssetCache"
;AssetCaching = "GlynnTuckerAssetCache"
;AssetCaching = "CenomeMemoryAssetCache"
AssetCaching = "FlotsamAssetCache"
[AssetCache]
;; ---- Optional configurations for FlotsamAssetCache
;
; The cache directory can be shared by multiple instances,
; so you may want to change this! Note that you can
; specify an absolute path (starting with '/').
; See examples in comments.
; Make sure the directory you specify can be created.
;
CacheDirectory = ./assetcache
;
; Some other examples:
; CacheDirectory = /var/opensim/assetcache ; (Windows and linux)
; CacheDirectory = ~/assetcache ; (Windows and linux)
; CacheDirectory = C:\opensim\assetcache ; (Windows only)
;
; How long {in hours} to keep assets cached on disk,
; .5 == 30 minutes; 168 = 7 days
; Specify 0 if you do not want your disk cache to expire
;
FileCacheTimeout = 168
;; --------- endof FlotsamAssetCache --------
[AssetService]
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
AssetLoaderArgs = "assets/AssetSets.xml"
;
; change this to your grid-wide asset server
;
AssetServerURI = "http://myassetserver.com:8003"
|