blob: 3fe8a1390dcedb22e19889d879afeb17198ac85c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
[Network]
;# {ExternalHostNameForLSL} {} {Hostname to use for HTTP-IN URLs. This should be reachable from the internet.} {}
;; Hostname to use in llRequestURL/llRequestSecureURL
;; if not defined - llRequestURL/llRequestSecureURL are disabled
ExternalHostNameForLSL = "server2.misfitzgrid.com"
[Messaging]
;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *}
;; Module to handle offline messaging. The core module requires an external
;; web service to do this. See OpenSim wiki.
OfflineMessageModule = OfflineMessageModule
;; Or, alternatively, use this one, which works for both standalones and grids
; OfflineMessageModule = "Offline Message Module V2"
;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule Offline Message Module V2:Offline Message Module V2} {URL of offline messaging service} {}
;; URL of web service for offline message storage. Leave it commented if your service is local to the sim.
; OfflineMessageURL = ${Const|BaseURL}/Offline.php
OfflineMessageURL = ${Const|jOpensimURL}/components/com_opensim/interface.php
[DataSnapshot]
;# {index_sims} {} {Enable data snapshotting (search)?} {true false} false
;; The following set of configs pertains to search.
;; Set index_sims to true to enable search engines to index your
;; searchable data.
;; If false, no data will be exposed, DataSnapshot module will be off,
;; and you can ignore the rest of these search-related configs.
index_sims = true
;# {data_exposure} {index_sims:true} {How much data should be exposed?} {minimum all} minimum
;; The variable data_exposure controls what the regions expose:
;; minimum: exposes only things explicitly marked for search
;; all: exposes everything
data_exposure = all
;; [Supported, but obsolete]
;# {data_services} {index_sims:true} {Data service URLs to register with?} {} http://metaverseink.com/cgi-bin/register.py
; This semicolon-separated string serves to notify specific data services
; about the existence of this sim. Uncomment if you want to index your
; data with this and/or other search providers.
data_services="${Const|jOpensimURL}/components/com_opensim/registersearch.php"
[Groups]
;# {SecretKey} {ServicesConnectorModule:Groups Remote Service Connector} {Secret key between sim and remote group service} {} ""
;; Used for V2 in Remote only.
SecretKey = "Kensentm3"
[Search]
SearchURL = ${Const|jOpensimURL}/components/com_opensim/interface.php
[AuthorizationService]
DefaultRegionAccess = "DisallowForeigners"
; If you have regions with access restrictions
; specify them here using the convention
; Region_<Region_Name> = <flags>
; Valid flags are:
; DisallowForeigners -- HG visitors not allowed
; DisallowResidents -- only Admins and Managers allowed
; None -- No restrictions.
Region_Blue_Moon = "None"
Region_MisFitz_ = "None"
Region_MisFitz_Continuum = "None"
Region_MisFitz_Dev = "None"
Region_MisFitz_Getaway = "None"
Region_MisFitz_Hyperport = "None"
Region_MisFitz_Motion = "None"
Region_Misfitz_Nature = "None"
Region_MisFitz_Residents1 = "None"
Region_MisFitz_Residents2 = "None"
Region_MisFitz_Sandbox = "None"
Region_MisFitz_Shopping = "None"
Region_MisFitz_Welcome = "None"
Region_MisFitz_Welcome_Beta = "None"
Region_White_Harbor = "None"
[Profile]
ProfileServiceURL = ${Const|jOpensimURL}/components/com_opensim/interface.php
Module = "jOpenSimProfile"
; Optional:
Debug = true
|