diff options
author | onefang | 2019-07-04 18:15:24 +1000 |
---|---|---|
committer | onefang | 2019-07-04 18:15:24 +1000 |
commit | 0a744b603d0670b63b469a957f026bceb075877e (patch) | |
tree | b28c0c3fe2d48169cfe6c5f203748c050ffdcb9d /bin/config-include/extra_MG.ini | |
parent | Comment++ about the DebuggerSafe config option. (diff) | |
download | opensim-SC-0a744b603d0670b63b469a957f026bceb075877e.zip opensim-SC-0a744b603d0670b63b469a957f026bceb075877e.tar.gz opensim-SC-0a744b603d0670b63b469a957f026bceb075877e.tar.bz2 opensim-SC-0a744b603d0670b63b469a957f026bceb075877e.tar.xz |
Move the MG configs to their own file.
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/extra_MG.ini | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/bin/config-include/extra_MG.ini b/bin/config-include/extra_MG.ini new file mode 100644 index 0000000..3fe8a13 --- /dev/null +++ b/bin/config-include/extra_MG.ini | |||
@@ -0,0 +1,87 @@ | |||
1 | [Network] | ||
2 | ;# {ExternalHostNameForLSL} {} {Hostname to use for HTTP-IN URLs. This should be reachable from the internet.} {} | ||
3 | ;; Hostname to use in llRequestURL/llRequestSecureURL | ||
4 | ;; if not defined - llRequestURL/llRequestSecureURL are disabled | ||
5 | ExternalHostNameForLSL = "server2.misfitzgrid.com" | ||
6 | |||
7 | |||
8 | [Messaging] | ||
9 | ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *} | ||
10 | ;; Module to handle offline messaging. The core module requires an external | ||
11 | ;; web service to do this. See OpenSim wiki. | ||
12 | OfflineMessageModule = OfflineMessageModule | ||
13 | ;; Or, alternatively, use this one, which works for both standalones and grids | ||
14 | ; OfflineMessageModule = "Offline Message Module V2" | ||
15 | |||
16 | ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule Offline Message Module V2:Offline Message Module V2} {URL of offline messaging service} {} | ||
17 | ;; URL of web service for offline message storage. Leave it commented if your service is local to the sim. | ||
18 | ; OfflineMessageURL = ${Const|BaseURL}/Offline.php | ||
19 | OfflineMessageURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
20 | |||
21 | |||
22 | [DataSnapshot] | ||
23 | ;# {index_sims} {} {Enable data snapshotting (search)?} {true false} false | ||
24 | ;; The following set of configs pertains to search. | ||
25 | ;; Set index_sims to true to enable search engines to index your | ||
26 | ;; searchable data. | ||
27 | ;; If false, no data will be exposed, DataSnapshot module will be off, | ||
28 | ;; and you can ignore the rest of these search-related configs. | ||
29 | index_sims = true | ||
30 | |||
31 | ;# {data_exposure} {index_sims:true} {How much data should be exposed?} {minimum all} minimum | ||
32 | ;; The variable data_exposure controls what the regions expose: | ||
33 | ;; minimum: exposes only things explicitly marked for search | ||
34 | ;; all: exposes everything | ||
35 | data_exposure = all | ||
36 | |||
37 | ;; [Supported, but obsolete] | ||
38 | ;# {data_services} {index_sims:true} {Data service URLs to register with?} {} http://metaverseink.com/cgi-bin/register.py | ||
39 | ; This semicolon-separated string serves to notify specific data services | ||
40 | ; about the existence of this sim. Uncomment if you want to index your | ||
41 | ; data with this and/or other search providers. | ||
42 | data_services="${Const|jOpensimURL}/components/com_opensim/registersearch.php" | ||
43 | |||
44 | |||
45 | [Groups] | ||
46 | ;# {SecretKey} {ServicesConnectorModule:Groups Remote Service Connector} {Secret key between sim and remote group service} {} "" | ||
47 | ;; Used for V2 in Remote only. | ||
48 | SecretKey = "Kensentm3" | ||
49 | |||
50 | |||
51 | [Search] | ||
52 | SearchURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
53 | |||
54 | |||
55 | [AuthorizationService] | ||
56 | DefaultRegionAccess = "DisallowForeigners" | ||
57 | ; If you have regions with access restrictions | ||
58 | ; specify them here using the convention | ||
59 | ; Region_<Region_Name> = <flags> | ||
60 | ; Valid flags are: | ||
61 | ; DisallowForeigners -- HG visitors not allowed | ||
62 | ; DisallowResidents -- only Admins and Managers allowed | ||
63 | ; None -- No restrictions. | ||
64 | |||
65 | Region_Blue_Moon = "None" | ||
66 | Region_MisFitz_ = "None" | ||
67 | Region_MisFitz_Continuum = "None" | ||
68 | Region_MisFitz_Dev = "None" | ||
69 | Region_MisFitz_Getaway = "None" | ||
70 | Region_MisFitz_Hyperport = "None" | ||
71 | Region_MisFitz_Motion = "None" | ||
72 | Region_Misfitz_Nature = "None" | ||
73 | Region_MisFitz_Residents1 = "None" | ||
74 | Region_MisFitz_Residents2 = "None" | ||
75 | Region_MisFitz_Sandbox = "None" | ||
76 | Region_MisFitz_Shopping = "None" | ||
77 | Region_MisFitz_Welcome = "None" | ||
78 | Region_MisFitz_Welcome_Beta = "None" | ||
79 | Region_White_Harbor = "None" | ||
80 | |||
81 | [Profile] | ||
82 | |||
83 | ProfileServiceURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
84 | Module = "jOpenSimProfile" | ||
85 | |||
86 | ; Optional: | ||
87 | Debug = true | ||