diff options
Diffstat (limited to 'bin/config-include/config.ini.MG_example')
-rw-r--r-- | bin/config-include/config.ini.MG_example | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/bin/config-include/config.ini.MG_example b/bin/config-include/config.ini.MG_example new file mode 100644 index 0000000..737bff4 --- /dev/null +++ b/bin/config-include/config.ini.MG_example | |||
@@ -0,0 +1,178 @@ | |||
1 | ; ** | ||
2 | ; * The Const section allows us to define some basic information that we | ||
3 | ; * will use throughout our configuration. We will provide examples for | ||
4 | ; * setting the base url of the Robust server and the public and private ports | ||
5 | ; * it uses. Changing the values of the constants will set the operating | ||
6 | ; * parameters thoughout the configuration. Other constants that may prove | ||
7 | ; * to be useful may be added to the followin section. They may be | ||
8 | ; * referenced anywhere in the configuration by using ${Const|Name}. One | ||
9 | ; * such use is providing a base path for setting locations that Robust | ||
10 | ; * uses to write data. | ||
11 | |||
12 | ; Also put grid specific stuff here. | ||
13 | |||
14 | |||
15 | [Paths] | ||
16 | AssetsPath = "../../AssetFiles" | ||
17 | BackupPath = "../../backups" | ||
18 | CachePath = "../../caches" | ||
19 | DbPath = "../../db" | ||
20 | LogPath = "../../logs" | ||
21 | |||
22 | |||
23 | [Const] | ||
24 | MOTD = "All of the World is a Stage, and Everyone's a Critic." | ||
25 | |||
26 | GridName = "Misfitz Grid" | ||
27 | ShortGridName = "MG" | ||
28 | |||
29 | ; For a grid these will usually be the externally accessible IP/DNS | ||
30 | ; name and use default public port 8002 and default private port 8003 | ||
31 | ; For a standalone this will usually be the externally accessible IP/DNS | ||
32 | ; name and use default public port 9000. The private port is not used | ||
33 | ; in the configuration for a standalone. | ||
34 | |||
35 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | ||
36 | BaseHostname = "http://misfitzgrid.com" | ||
37 | HostName = "misfitzgrid.com" | ||
38 | BaseURL = http://misfitzgrid.com | ||
39 | GridURL = http://misfitzgrid.com | ||
40 | |||
41 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | ||
42 | PublicPort = "8002" | ||
43 | |||
44 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | ||
45 | PrivatePort = "8003" | ||
46 | |||
47 | |||
48 | DataProvider = "OpenSim.Data.MySQL.dll" | ||
49 | ConnectionString = "Data Source=localhost;Database=****;User ID=****;Password=****;Old Guids=true;" | ||
50 | |||
51 | |||
52 | ; jOpenSim URL | ||
53 | jOpensimURL = "http://misfitzgrid.com/members" | ||
54 | ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER | ||
55 | AssetServerPort = "8004" | ||
56 | |||
57 | |||
58 | [Network] | ||
59 | ;# {ExternalHostNameForLSL} {} {Hostname to use for HTTP-IN URLs. This should be reachable from the internet.} {} | ||
60 | ;; Hostname to use in llRequestURL/llRequestSecureURL | ||
61 | ;; if not defined - llRequestURL/llRequestSecureURL are disabled | ||
62 | ExternalHostNameForLSL = "server2.misfitzgrid.com" | ||
63 | |||
64 | |||
65 | [Messaging] | ||
66 | ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *} | ||
67 | ;; Module to handle offline messaging. The core module requires an external | ||
68 | ;; web service to do this. See OpenSim wiki. | ||
69 | OfflineMessageModule = OfflineMessageModule | ||
70 | ;; Or, alternatively, use this one, which works for both standalones and grids | ||
71 | ; OfflineMessageModule = "Offline Message Module V2" | ||
72 | |||
73 | ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule Offline Message Module V2:Offline Message Module V2} {URL of offline messaging service} {} | ||
74 | ;; URL of web service for offline message storage. Leave it commented if your service is local to the sim. | ||
75 | ; OfflineMessageURL = ${Const|BaseURL}/Offline.php | ||
76 | OfflineMessageURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
77 | |||
78 | |||
79 | [DataSnapshot] | ||
80 | ;# {index_sims} {} {Enable data snapshotting (search)?} {true false} false | ||
81 | ;; The following set of configs pertains to search. | ||
82 | ;; Set index_sims to true to enable search engines to index your | ||
83 | ;; searchable data. | ||
84 | ;; If false, no data will be exposed, DataSnapshot module will be off, | ||
85 | ;; and you can ignore the rest of these search-related configs. | ||
86 | index_sims = true | ||
87 | |||
88 | ;# {data_exposure} {index_sims:true} {How much data should be exposed?} {minimum all} minimum | ||
89 | ;; The variable data_exposure controls what the regions expose: | ||
90 | ;; minimum: exposes only things explicitly marked for search | ||
91 | ;; all: exposes everything | ||
92 | data_exposure = all | ||
93 | |||
94 | ;; [Supported, but obsolete] | ||
95 | ;# {data_services} {index_sims:true} {Data service URLs to register with?} {} http://metaverseink.com/cgi-bin/register.py | ||
96 | ; This semicolon-separated string serves to notify specific data services | ||
97 | ; about the existence of this sim. Uncomment if you want to index your | ||
98 | ; data with this and/or other search providers. | ||
99 | data_services="${Const|jOpensimURL}/components/com_opensim/registersearch.php" | ||
100 | |||
101 | |||
102 | [Groups] | ||
103 | ;# {SecretKey} {ServicesConnectorModule:Groups Remote Service Connector} {Secret key between sim and remote group service} {} "" | ||
104 | ;; Used for V2 in Remote only. | ||
105 | SecretKey = "Kensentm3" | ||
106 | |||
107 | |||
108 | [Search] | ||
109 | SearchURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
110 | |||
111 | |||
112 | [AuthorizationService] | ||
113 | ; If you have regions with access restrictions | ||
114 | ; specify them here using the convention | ||
115 | ; Region_<Region_Name> = <flags> | ||
116 | ; Valid flags are: | ||
117 | ; DisallowForeigners -- HG visitors not allowed | ||
118 | ; DisallowResidents -- only Admins and Managers allowed | ||
119 | ; Example: | ||
120 | Region_Amazonas = "DisallowForeigners" | ||
121 | Region_Andros = "DisallowForeigners" | ||
122 | Region_Archangel = "DisallowForeigners" | ||
123 | Region_Blue_Moon = "DisallowForeigners" | ||
124 | Region_Blue_Water = "DisallowForeigners" | ||
125 | Region_Boiboi = "DisallowForeigners" | ||
126 | ; Region_Castaway_Cay = "DisallowForeigners" | ||
127 | Region_Chen = "DisallowForeigners" | ||
128 | Region_Coruscant = "DisallowForeigners" | ||
129 | Region_Firefly = "DisallowForeigners" | ||
130 | Region_Haystack1 = "DisallowForeigners" | ||
131 | Region_Haystack2 = "DisallowForeigners" | ||
132 | Region_Isle_of_Beast = "DisallowForeigners" | ||
133 | Region_JaimieVille = "DisallowForeigners" | ||
134 | Region_Kikai_Gaki = "DisallowForeigners" | ||
135 | Region_KW1 = "DisallowForeigners" | ||
136 | Region_Lioneart = "DisallowForeigners" | ||
137 | Region_Lyra = "DisallowForeigners" | ||
138 | Region_MisFitz_Fairground = "DisallowForeigners" | ||
139 | Region_MisFitz_Residential_1 = "DisallowForeigners" | ||
140 | Region_MisFitz_Residential_2 = "DisallowForeigners" | ||
141 | Region_MisFitz_Sandbox = "DisallowForeigners" | ||
142 | Region_Neo_Kidopolis = "DisallowForeigners" | ||
143 | Region_Neverland = "DisallowForeigners" | ||
144 | Region_Ningaloo = "DisallowForeigners" | ||
145 | Region_Northland = "DisallowForeigners" | ||
146 | Region_Nucleus = "DisallowForeigners" | ||
147 | Region_Oreo_World = "DisallowForeigners" | ||
148 | Region_Parts_unKnown = "DisallowForeigners" | ||
149 | Region_Raja_Ampat = "DisallowForeigners" | ||
150 | Region_Red_Sea = "DisallowForeigners" | ||
151 | Region_Serenity = "DisallowForeigners" | ||
152 | Region_Silversmoke_Estate = "DisallowForeigners" | ||
153 | Region_SkyTec = "DisallowForeigners" | ||
154 | Region_Star_Dream = "DisallowForeigners" | ||
155 | Region_STS-Sandbox = "DisallowForeigners" | ||
156 | Region_Sweetland = "DisallowForeigners" | ||
157 | Region_Taboo_Too = "DisallowForeigners" | ||
158 | Region_TheExpanse = "DisallowForeigners" | ||
159 | Region_Ubercity = "DisallowForeigners" | ||
160 | Region_Undercity = "DisallowForeigners" | ||
161 | Region_White_Harbor = "DisallowForeigners" | ||
162 | Region_Traumland = "DisallowForeigners" | ||
163 | Region_Crazy_Family = "DisallowForeigners" | ||
164 | Region_Moonland = "DisallowForeigners" | ||
165 | Region_Lost_Mittens = "DisallowForeigners" | ||
166 | Region_The_Dugout = "DisallowForeigners" | ||
167 | Region_The_Sandlot = "DisallowForeigners" | ||
168 | Region_Wild_Shadow_Bay = "DisallowForeigners" | ||
169 | Region_Recreational_Hazard = "DisallowForeigners" | ||
170 | |||
171 | |||
172 | [Profile] | ||
173 | |||
174 | ProfileServiceURL = ${Const|jOpensimURL}/components/com_opensim/interface.php | ||
175 | Module = "jOpenSimProfile" | ||
176 | |||
177 | ; Optional: | ||
178 | Debug = true | ||