diff options
author | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-03 21:44:39 +1000 |
commit | 134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch) | |
tree | 216b89d3fb89acfb81be1e440c25c41ab09fa96d /bin/Robust.HG.ini.example | |
parent | More changing to production grid. Double oops. (diff) | |
download | opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.zip opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.gz opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.bz2 opensim-SC-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.xz |
Initial update to OpenSim 0.8.2.1 source code.
Diffstat (limited to '')
-rw-r--r-- | bin/Robust.HG.ini.example | 546 |
1 files changed, 377 insertions, 169 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example index 0d6d075..6af444c 100644 --- a/bin/Robust.HG.ini.example +++ b/bin/Robust.HG.ini.example | |||
@@ -10,6 +10,29 @@ | |||
10 | ; * OpenSim.Server.Handlers.dll:XInventoryInConnector | 10 | ; * OpenSim.Server.Handlers.dll:XInventoryInConnector |
11 | ; * are started in port 8002, outside the firewall | 11 | ; * are started in port 8002, outside the firewall |
12 | ; * | 12 | ; * |
13 | ; ** | ||
14 | ; * | ||
15 | ; * The Const section allows us to define some basic information that we | ||
16 | ; * will use throughout our configuration. We will provide examples for | ||
17 | ; * setting the base url of the Robust server and the public and private ports | ||
18 | ; * it uses. Changing the values of the constants will set the operating | ||
19 | ; * parameters thoughout the configuration. Other constants that may prove | ||
20 | ; * to be useful may be added to the followin section. They may be | ||
21 | ; * referenced anywhere in the configuration by using ${Const|Name}. One | ||
22 | ; * such use is providing a base path for setting locations that Robust | ||
23 | ; * uses to write data. | ||
24 | ; * | ||
25 | [Const] | ||
26 | |||
27 | ; The URL of the Robust server | ||
28 | BaseURL = "http://127.0.0.1" | ||
29 | |||
30 | ; The public port of the Robust server | ||
31 | PublicPort = "8002" | ||
32 | |||
33 | ; The private port of the Robust server | ||
34 | PrivatePort = "8003" | ||
35 | |||
13 | ; * The startup section lists all the connectors to start up in this server | 36 | ; * The startup section lists all the connectors to start up in this server |
14 | ; * instance. This may be only one, or it may be the entire server suite. | 37 | ; * instance. This may be only one, or it may be the entire server suite. |
15 | ; * Multiple connectors should be separated by commas. | 38 | ; * Multiple connectors should be separated by commas. |
@@ -21,55 +44,81 @@ | |||
21 | ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] | 44 | ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] |
22 | ; * | 45 | ; * |
23 | [Startup] | 46 | [Startup] |
47 | ; Place to create a PID file | ||
48 | ; If no path if specified then a PID file is not created. | ||
49 | ; PIDFile = "/tmp/Robust.exe.pid" | ||
24 | 50 | ||
25 | ; Plugin Registry Location | 51 | ; Plugin Registry Location |
26 | ; Set path to directory for plugin registry. Information | 52 | ; Set path to directory for plugin registry. Information |
27 | ; about the registered repositories and installed plugins | 53 | ; about the registered repositories and installed plugins |
28 | ; will be stored here | 54 | ; will be stored here |
29 | ; The Robust.exe process must hvae R/W access to the location | 55 | ; The Robust.exe process must have R/W access to the location |
30 | RegistryLocation = "." | 56 | RegistryLocation = "." |
31 | 57 | ||
32 | ; Modular configurations | 58 | ; Modular configurations |
33 | ; Set path to directory for modular ini files... | 59 | ; Set path to directory for modular ini files... |
34 | ; The Robust.exe process must hvae R/W access to the location | 60 | ; The Robust.exe process must have R/W access to the location |
35 | ConfigDirectory = "/home/opensim/etc/Configs" | 61 | ConfigDirectory = "." |
36 | 62 | ||
37 | [ServiceList] | 63 | ; Console commands can be saved to a file, so the command history persists after a restart. (default is true) |
64 | ConsoleHistoryFileEnabled = true | ||
65 | |||
66 | ; The history file can be just a filename (relative to OpenSim's bin/ directory | ||
67 | ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/) | ||
68 | ConsoleHistoryFile = "RobustConsoleHistory.txt" | ||
69 | |||
70 | ; How many lines of command history should we keep? (default is 100) | ||
71 | ConsoleHistoryFileLines = 100 | ||
38 | 72 | ||
39 | AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" | 73 | |
40 | InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector" | 74 | [ServiceList] |
41 | VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector" | 75 | AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector" |
42 | GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector" | 76 | InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector" |
43 | GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector" | 77 | ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below) |
44 | AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" | 78 | ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector" |
45 | OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector" | 79 | GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector" |
46 | AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector" | 80 | GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector" |
47 | LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector" | 81 | AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" |
48 | PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector" | 82 | OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector" |
49 | UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector" | 83 | AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector" |
50 | GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector" | 84 | LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector" |
51 | FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector" | 85 | PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector" |
52 | MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector" | 86 | UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector" |
53 | MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector" | 87 | GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector" |
54 | 88 | AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector" | |
55 | ;; Additions for Hypergrid | 89 | FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector" |
56 | 90 | MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector" | |
57 | GatekeeperServiceInConnector = "8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector" | 91 | MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector" |
58 | UserAgentServerConnector = "8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector" | 92 | ;; Uncomment this if you want offline IM to work |
59 | HeloServiceInConnector = "8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector" | 93 | ; OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector" |
60 | HGFriendsServerConnector = "8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector" | 94 | ;; Uncomment this if you want Groups V2 to work |
61 | InstantMessageServerConnector = "8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector" | 95 | ; GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" |
62 | HGInventoryServiceConnector = "HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector" | 96 | ;; Uncomment to provide bakes caching |
63 | HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector" | 97 | ;BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector" |
64 | 98 | ||
65 | ;; Additions for other add-on modules. For example: | 99 | ;; Additions for Hypergrid |
66 | ;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector" | 100 | |
101 | GatekeeperServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector" | ||
102 | UserAgentServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserAgentServerConnector" | ||
103 | HeloServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HeloServiceInConnector" | ||
104 | HGFriendsServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HGFriendsServerConnector" | ||
105 | InstantMessageServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:InstantMessageServerConnector" | ||
106 | HGInventoryServiceConnector = "HGInventoryService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:XInventoryInConnector" | ||
107 | HGAssetServiceConnector = "HGAssetService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:AssetServiceConnector" | ||
108 | ;; Uncomment this if you want Groups V2, HG to work | ||
109 | ; HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector" | ||
110 | |||
111 | ;; Uncomment for UserProfiles see [UserProfilesService] to configure... | ||
112 | ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector" | ||
113 | |||
114 | ;; Uncomment if you want to have centralized estate data | ||
115 | ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector" | ||
67 | 116 | ||
68 | ; * This is common for all services, it's the network setup for the entire | 117 | ; * This is common for all services, it's the network setup for the entire |
69 | ; * server instance, if none is specified above | 118 | ; * server instance, if none is specified above |
70 | ; * | 119 | ; * |
71 | [Network] | 120 | [Network] |
72 | port = 8003 | 121 | port = ${Const|PrivatePort} |
73 | 122 | ||
74 | ; HTTPS for "Out of band" management applications such as the remote admin | 123 | ; HTTPS for "Out of band" management applications such as the remote admin |
75 | ; module. May specify https_main = True to make the main http server | 124 | ; module. May specify https_main = True to make the main http server |
@@ -90,45 +139,145 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
90 | ; Password for cert | 139 | ; Password for cert |
91 | ; cert_pass = "password" | 140 | ; cert_pass = "password" |
92 | 141 | ||
93 | 142 | ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services. | |
94 | ; * The following are for the remote console | 143 | ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet |
95 | ; * They have no effect for the local or basic console types | 144 | ;; but you want to protect them from unauthorized access. |
96 | ; * Leave commented to diable logins to the console | 145 | ; AuthType = "BasicHttpAuthentication" |
97 | ;ConsoleUser = Test | 146 | ; HttpAuthUsername = "some_username" |
98 | ;ConsolePass = secret | 147 | ; HttpAuthPassword = "some_password" |
99 | ;ConsolePort = 0 | 148 | ;; |
149 | ;; AuthType above can be overriden in any of the service sections below by | ||
150 | ; AuthType = "None" | ||
151 | ;; This is useful in cases where you want to protect most of the services, | ||
152 | ;; but unprotect individual services. Username and Password can also be | ||
153 | ;; overriden if you want to use different credentials for the different services. | ||
154 | ;; Hypergrid services are not affected by this; they are publicly available | ||
155 | ;; by design. | ||
156 | |||
157 | ;; By default, scripts are not allowed to call private services via llHttpRequest() | ||
158 | ;; Such calls are detected by the X-SecondLife-Shared HTTP header | ||
159 | ;; If you allow such calls you must be sure that they are restricted to very trusted scripters | ||
160 | ;; (remember scripts can also be in visiting avatar attachments). | ||
161 | ;; This can be overriden in individual private service sections if necessary | ||
162 | AllowllHTTPRequestIn = false | ||
163 | |||
164 | ; * The following are for the remote console | ||
165 | ; * They have no effect for the local or basic console types | ||
166 | ; * Leave commented to diable logins to the console | ||
167 | ;ConsoleUser = Test | ||
168 | ;ConsolePass = secret | ||
169 | ;ConsolePort = 0 | ||
170 | |||
171 | |||
172 | [Hypergrid] | ||
173 | ;# {HomeURI} {Hypergrid} {The Home URL of this world} {} | ||
174 | ;; This is the address of the external robust server that | ||
175 | ;; runs the UserAgentsService, possibly this server. | ||
176 | ;; For example http://myworld.com:8002 | ||
177 | ;; This is a default that can be overwritten in some sections. | ||
178 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
179 | |||
180 | ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {} | ||
181 | ;; This is the address of the external robust server | ||
182 | ;; that runs the Gatekeeper service, possibly this server. | ||
183 | ;; For example http://myworld.com:8002 | ||
184 | ;; This is a default that can be overwritten in some sections. | ||
185 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
186 | |||
187 | [AccessControl] | ||
188 | ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {} | ||
189 | ;; Bar (|) separated list of viewers which may gain access to the regions. | ||
190 | ;; One can use a substring of the viewer name to enable only certain | ||
191 | ;; versions | ||
192 | ;; Example: Agent uses the viewer "Imprudence 1.3.2.0" | ||
193 | ;; - "Imprudence" has access | ||
194 | ;; - "Imprudence 1.3" has access | ||
195 | ;; - "Imprudence 1.3.1" has no access | ||
196 | ; AllowedClients = "" | ||
197 | |||
198 | ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {} | ||
199 | ;; Bar (|) separated list of viewers which may not gain access to the regions. | ||
200 | ;; One can use a Substring of the viewer name to disable only certain | ||
201 | ;; versions | ||
202 | ;; Example: Agent uses the viewer "Imprudence 1.3.2.0" | ||
203 | ;; - "Imprudence" has no access | ||
204 | ;; - "Imprudence 1.3" has no access | ||
205 | ;; - "Imprudence 1.3.1" has access | ||
206 | ; DeniedClients = "" | ||
100 | 207 | ||
101 | [DatabaseService] | 208 | [DatabaseService] |
209 | ; PGSQL | ||
210 | ; Uncomment these lines if you want to use PGSQL storage | ||
211 | ; Change the connection string to your db details | ||
212 | ;StorageProvider = "OpenSim.Data.PGSQL.dll" | ||
213 | ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;" | ||
214 | |||
215 | ; MySQL | ||
216 | ; Uncomment these lines if you want to use MySQL storage | ||
217 | ; Change the connection string to your db details | ||
102 | StorageProvider = "OpenSim.Data.MySQL.dll" | 218 | StorageProvider = "OpenSim.Data.MySQL.dll" |
103 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" | 219 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" |
104 | 220 | ||
221 | |||
105 | ; * As an example, the below configuration precisely mimicks the legacy | 222 | ; * As an example, the below configuration precisely mimicks the legacy |
106 | ; * asset server. It is read by the asset IN connector (defined above) | 223 | ; * asset server. It is read by the asset IN connector (defined above) |
107 | ; * and it then loads the OUT connector (a local database module). That, | 224 | ; * and it then loads the OUT connector (a local database module). That, |
108 | ; * in turn, reads the asset loader and database connection information | 225 | ; * in turn, reads the asset loader and database connection information |
109 | ; * | 226 | ; * |
110 | [AssetService] | 227 | [AssetService] |
228 | |||
229 | ;; Choose an asset service (Only one option should be enabled) | ||
111 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 230 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
231 | ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector" | ||
232 | |||
233 | ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files | ||
234 | ;; These directories must be on the same physical filesystem | ||
235 | ;BaseDirectory = "./fsassets/data" | ||
236 | ;SpoolDirectory = "./fsassets/tmp" | ||
237 | |||
238 | ;; Original service can be checked if FSAssets can not find an asset | ||
239 | ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService"; | ||
240 | |||
241 | ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset | ||
242 | ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time | ||
243 | ;DaysBetweenAccessTimeUpdates = 30 | ||
244 | |||
245 | ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration) | ||
246 | ;StorageProvider = "" | ||
247 | ;ConnectionString = "" | ||
248 | ;Realm = "fsassets" | ||
249 | |||
250 | ;; The following are common to both the default asset service and FSAsset service | ||
251 | |||
252 | ;; Common asset service options | ||
112 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | 253 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" |
113 | AssetLoaderArgs = "./assets/AssetSets.xml" | 254 | AssetLoaderArgs = "./assets/AssetSets.xml" |
114 | 255 | ||
256 | |||
115 | ; * This configuration loads the inventory server modules. It duplicates | 257 | ; * This configuration loads the inventory server modules. It duplicates |
116 | ; * the function of the legacy inventory server | 258 | ; * the function of the legacy inventory server |
117 | ; * | 259 | ; * |
118 | [InventoryService] | 260 | [InventoryService] |
119 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService" | 261 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService" |
120 | 262 | ||
263 | ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed? | ||
264 | ; If this is set to false then some other arrangement must be made to perform these operations if necessary. | ||
265 | AllowDelete = true | ||
266 | |||
267 | |||
121 | ; * This is the new style grid service. | 268 | ; * This is the new style grid service. |
122 | ; * "Realm" is the table that is used for user lookup. | 269 | ; * "Realm" is the table that is used for user lookup. |
123 | ; * It defaults to "regions", which uses the legacy tables | 270 | ; * It defaults to "regions", which uses the legacy tables |
124 | ; * | 271 | ; * |
125 | [GridService] | 272 | [GridService] |
126 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 273 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
127 | HypergridLinker = true | ||
128 | 274 | ||
129 | ; Realm = "regions" | 275 | ; Realm = "regions" |
130 | ; AllowDuplicateNames = "True" | 276 | ; AllowDuplicateNames = "True" |
131 | 277 | ||
278 | ;; Perform distance check for the creation of a linked region | ||
279 | ; Check4096 = "True" | ||
280 | |||
132 | ;; Needed to display non-default map tile images for linked regions | 281 | ;; Needed to display non-default map tile images for linked regions |
133 | AssetService = "OpenSim.Services.AssetService.dll:AssetService" | 282 | AssetService = "OpenSim.Services.AssetService.dll:AssetService" |
134 | 283 | ||
@@ -138,15 +287,35 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
138 | ;; Next, we can specify properties of regions, including default and fallback regions | 287 | ;; Next, we can specify properties of regions, including default and fallback regions |
139 | ;; The syntax is: Region_<RegionName> = "<flags>" | 288 | ;; The syntax is: Region_<RegionName> = "<flags>" |
140 | ;; or: Region_<RegionID> = "<flags>" | 289 | ;; or: Region_<RegionID> = "<flags>" |
141 | ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate | 290 | ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate |
142 | ;; For example: | 291 | ;; |
292 | ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.) | ||
293 | ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion | ||
294 | ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified | ||
295 | ;; an explicit region. | ||
296 | ;; | ||
297 | ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online | ||
298 | ;; region will be used. | ||
299 | ;; | ||
300 | ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the | ||
301 | ;; order specified. This only applies to local logins at this time, not Hypergrid connections. | ||
302 | ;; | ||
303 | ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins. | ||
304 | ;; | ||
305 | ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid. | ||
306 | ;; | ||
143 | ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" | 307 | ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" |
144 | ; (replace spaces with underscore) | 308 | ; (replace spaces with underscore) |
145 | 309 | ||
146 | ;; Allow Hyperlinks to be created at the console | 310 | ;; Allow Hyperlinks to be created at the console |
147 | HypergridLinker = true | 311 | HypergridLinker = true |
148 | 312 | ||
149 | Gatekeeper = "http://127.0.0.1:8002" | 313 | ;; Allow supporting viewers to export content |
314 | ;; Set to false to prevent export | ||
315 | ExportSupported = true | ||
316 | |||
317 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented | ||
318 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
150 | 319 | ||
151 | 320 | ||
152 | ; * This is the configuration for the freeswitch server in grid mode | 321 | ; * This is the configuration for the freeswitch server in grid mode |
@@ -185,6 +354,7 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
185 | ; EchoPort = 50505 | 354 | ; EchoPort = 50505 |
186 | ; AttemptSTUN = false | 355 | ; AttemptSTUN = false |
187 | 356 | ||
357 | |||
188 | ; * This is the new style authentication service. Currently, only MySQL | 358 | ; * This is the new style authentication service. Currently, only MySQL |
189 | ; * is implemented. | 359 | ; * is implemented. |
190 | ; * | 360 | ; * |
@@ -205,11 +375,13 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
205 | ;; Default is false. | 375 | ;; Default is false. |
206 | ; AllowSetPassword = false | 376 | ; AllowSetPassword = false |
207 | 377 | ||
378 | |||
208 | [OpenIdService] | 379 | [OpenIdService] |
209 | ; for the server connector | 380 | ; for the server connector |
210 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | 381 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
211 | UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 382 | UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
212 | 383 | ||
384 | |||
213 | ; * This is the new style user service. | 385 | ; * This is the new style user service. |
214 | ; * "Realm" is the table that is used for user lookup. | 386 | ; * "Realm" is the table that is used for user lookup. |
215 | ; * It defaults to "useraccounts", which uses the new style. | 387 | ; * It defaults to "useraccounts", which uses the new style. |
@@ -226,6 +398,7 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
226 | GridService = "OpenSim.Services.GridService.dll:GridService" | 398 | GridService = "OpenSim.Services.GridService.dll:GridService" |
227 | InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService" | 399 | InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService" |
228 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | 400 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" |
401 | GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService" | ||
229 | 402 | ||
230 | ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2 | 403 | ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2 |
231 | ;; to show a default "Ruth" avatar rather than a cloud for a newly created user. | 404 | ;; to show a default "Ruth" avatar rather than a cloud for a newly created user. |
@@ -245,22 +418,34 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
245 | ; for the server connector | 418 | ; for the server connector |
246 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService" | 419 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService" |
247 | 420 | ||
421 | |||
422 | [AgentPreferencesService] | ||
423 | ; for the server connector | ||
424 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService" | ||
425 | |||
426 | |||
248 | [PresenceService] | 427 | [PresenceService] |
249 | ; for the server connector | 428 | ; for the server connector |
250 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | 429 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" |
251 | 430 | ||
431 | |||
252 | [AvatarService] | 432 | [AvatarService] |
253 | ; for the server connector | 433 | ; for the server connector |
254 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" | 434 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" |
255 | 435 | ||
436 | |||
256 | [FriendsService] | 437 | [FriendsService] |
257 | ; for the server connector | 438 | ; for the server connector |
258 | LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService" | 439 | LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService" |
259 | 440 | ||
441 | [EstateService] | ||
442 | LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService" | ||
443 | |||
260 | [LibraryService] | 444 | [LibraryService] |
261 | LibraryName = "OpenSim Library" | 445 | LibraryName = "OpenSim Library" |
262 | DefaultLibrary = "./inventory/Libraries.xml" | 446 | DefaultLibrary = "./inventory/Libraries.xml" |
263 | 447 | ||
448 | |||
264 | [LoginService] | 449 | [LoginService] |
265 | ; for the server connector | 450 | ; for the server connector |
266 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | 451 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" |
@@ -277,55 +462,45 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
277 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | 462 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" |
278 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | 463 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" |
279 | 464 | ||
465 | ; This inventory service will be used to initialize the user's inventory | ||
466 | HGInventoryServicePlugin = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService" | ||
467 | HGInventoryServiceConstructorArg = "HGInventoryService" | ||
468 | |||
280 | ;; Ask co-operative viewers to use a different currency name | 469 | ;; Ask co-operative viewers to use a different currency name |
281 | ;Currency = "" | 470 | ;Currency = "" |
282 | 471 | ||
472 | ;; Set minimum fee to publish classified | ||
473 | ; ClassifiedFee = 0 | ||
474 | |||
283 | WelcomeMessage = "Welcome, Avatar!" | 475 | WelcomeMessage = "Welcome, Avatar!" |
284 | AllowRemoteSetLoginLevel = "false" | 476 | AllowRemoteSetLoginLevel = "false" |
285 | 477 | ||
286 | ; For V2 map | 478 | ; For V2 map |
287 | MapTileURL = "http://127.0.0.1:8002"; | 479 | MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/"; |
288 | 480 | ||
289 | ; For V2/3 Web Profiles | 481 | ; Url to search service |
290 | ; Work in progress: The ProfileServerURL/OpenIDServerURL are | 482 | ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/"; |
291 | ; being used in a development viewer as support for webprofiles | 483 | |
292 | ; is being developed across the componets | 484 | ; For V3 destination guide |
293 | ; | 485 | ; DestinationGuide = "${Const|BaseURL}/guide" |
294 | ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]" | 486 | |
295 | ; | 487 | ; For V3 avatar picker (( work in progress )) |
296 | ; For V2/V3 webapp authentication SSO | 488 | ; AvatarPicker = "${Const|BaseURL}/avatars" |
297 | ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/" | ||
298 | 489 | ||
299 | ; If you run this login server behind a proxy, set this to true | 490 | ; If you run this login server behind a proxy, set this to true |
300 | ; HasProxy = false | 491 | ; HasProxy = false |
301 | 492 | ||
302 | ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs) | 493 | ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs) |
303 | ; CHANGE THIS | 494 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented |
304 | GatekeeperURI = "http://127.0.0.1:8002" | 495 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
305 | 496 | ||
306 | SRV_HomeURI = "http://127.0.0.1:8002" | 497 | SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
307 | SRV_InventoryServerURI = "http://127.0.0.1:8002" | 498 | SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
308 | SRV_AssetServerURI = "http://127.0.0.1:8002" | 499 | SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
309 | SRV_ProfileServerURI = "http://127.0.0.1:8002" | 500 | SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
310 | SRV_FriendsServerURI = "http://127.0.0.1:8002" | 501 | SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
311 | SRV_IMServerURI = "http://127.0.0.1:8002" | 502 | SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
312 | 503 | SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}" | |
313 | ;; Regular expressions for controlling which client versions are accepted/denied. | ||
314 | ;; An empty string means nothing is checked. | ||
315 | ;; | ||
316 | ;; Example 1: allow only these 3 types of clients (any version of them) | ||
317 | ;; AllowedClients = "Imprudence|Hippo|Second Life" | ||
318 | ;; | ||
319 | ;; Example 2: allow all clients except these | ||
320 | ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald" | ||
321 | ;; | ||
322 | ;; Note that these are regular expressions, so every character counts. | ||
323 | ;; Also note that this is very weak security and should not be trusted as a reliable means | ||
324 | ;; for keeping bad clients out; modified clients can fake their identifiers. | ||
325 | ;; | ||
326 | ;; | ||
327 | ;AllowedClients = "" | ||
328 | ;DeniedClients = "" | ||
329 | 504 | ||
330 | ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time" | 505 | ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time" |
331 | ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time | 506 | ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time |
@@ -339,18 +514,21 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
339 | ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows | 514 | ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows |
340 | DSTZone = "America/Los_Angeles;Pacific Standard Time" | 515 | DSTZone = "America/Los_Angeles;Pacific Standard Time" |
341 | 516 | ||
517 | |||
342 | [MapImageService] | 518 | [MapImageService] |
343 | LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" | 519 | LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" |
344 | ; Set this if you want to change the default | 520 | |
345 | ; TilesStoragePath = "maptiles" | 521 | ; Set this if you want to change the default |
346 | ; | 522 | ; TilesStoragePath = "maptiles" |
347 | ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002), | 523 | ; |
348 | ; you may want to set this. Otherwise, don't set it, because it's already protected. | 524 | ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}), |
349 | ; GridService = "OpenSim.Services.GridService.dll:GridService" | 525 | ; you may want to set this. Otherwise, don't set it, because it's already protected. |
350 | ; | 526 | ; GridService = "OpenSim.Services.GridService.dll:GridService" |
527 | ; | ||
351 | ; Additionally, if you run this server behind a proxy, set this to true | 528 | ; Additionally, if you run this server behind a proxy, set this to true |
352 | ; HasProxy = false | 529 | ; HasProxy = false |
353 | 530 | ||
531 | |||
354 | [GridInfoService] | 532 | [GridInfoService] |
355 | ; These settings are used to return information on a get_grid_info call. | 533 | ; These settings are used to return information on a get_grid_info call. |
356 | ; Client launcher scripts and third-party clients make use of this to | 534 | ; Client launcher scripts and third-party clients make use of this to |
@@ -361,7 +539,7 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
361 | ; See http://opensimulator.org/wiki/GridInfo | 539 | ; See http://opensimulator.org/wiki/GridInfo |
362 | 540 | ||
363 | ; login uri: for grid this is the login server URI | 541 | ; login uri: for grid this is the login server URI |
364 | login = http://127.0.0.1:8002/ | 542 | login = ${Const|BaseURL}:${Const|PublicPort}/ |
365 | 543 | ||
366 | ; long grid name: the long name of your grid | 544 | ; long grid name: the long name of your grid |
367 | gridname = "the lost continent of hippo" | 545 | gridname = "the lost continent of hippo" |
@@ -371,32 +549,33 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
371 | 549 | ||
372 | ; login page: optional: if it exists it will be used to tell the client to use | 550 | ; login page: optional: if it exists it will be used to tell the client to use |
373 | ; this as splash page | 551 | ; this as splash page |
374 | ;welcome = http://127.0.0.1/welcome | 552 | ;welcome = ${Const|BaseURL}/welcome |
375 | 553 | ||
376 | ; helper uri: optional: if it exists if will be used to tell the client to use | 554 | ; helper uri: optional: if it exists it will be used to tell the client to use |
377 | ; this for all economy related things | 555 | ; this for all economy related things |
378 | ;economy = http://127.0.0.1:8002/ | 556 | ;economy = ${Const|BaseURL}/economy |
379 | 557 | ||
380 | ; web page of grid: optional: page providing further information about your grid | 558 | ; web page of grid: optional: page providing further information about your grid |
381 | ;about = http://127.0.0.1/about/ | 559 | ;about = ${Const|BaseURL}/about |
382 | 560 | ||
383 | ; account creation: optional: page providing further information about obtaining | 561 | ; account creation: optional: page providing further information about obtaining |
384 | ; a user account on your grid | 562 | ; a user account on your grid |
385 | ;register = http://127.0.0.1/register | 563 | ;register = ${Const|BaseURL}/register |
386 | 564 | ||
387 | ; help: optional: page providing further assistance for users of your grid | 565 | ; help: optional: page providing further assistance for users of your grid |
388 | ;help = http://127.0.0.1/help | 566 | ;help = ${Const|BaseURL}/help |
389 | 567 | ||
390 | ; password help: optional: page providing password assistance for users of your grid | 568 | ; password help: optional: page providing password assistance for users of your grid |
391 | ;password = http://127.0.0.1/password | 569 | ;password = ${Const|BaseURL}/password |
392 | 570 | ||
393 | ; HG address of the gatekeeper, if you have one | 571 | ; HG address of the gatekeeper, if you have one |
394 | ; this is the entry point for all the regions of the world | 572 | ; this is the entry point for all the regions of the world |
395 | ; gatekeeper = http://127.0.0.1:8002/ | 573 | ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/ |
396 | 574 | ||
397 | ; HG user domain, if you have one | 575 | ; HG user domain, if you have one |
398 | ; this is the entry point for all user-related HG services | 576 | ; this is the entry point for all user-related HG services |
399 | ; uas = http://127.0.0.1:8002/ | 577 | ; uas = ${Const|BaseURL}:${Const|PublicPort}/ |
578 | |||
400 | 579 | ||
401 | [GatekeeperService] | 580 | [GatekeeperService] |
402 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" | 581 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" |
@@ -404,12 +583,13 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
404 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 583 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
405 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | 584 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" |
406 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | 585 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" |
586 | GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService" | ||
407 | GridService = "OpenSim.Services.GridService.dll:GridService" | 587 | GridService = "OpenSim.Services.GridService.dll:GridService" |
408 | AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" | 588 | AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" |
409 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" | 589 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" |
410 | ; how does the outside world reach me? This acts as public key too. | 590 | ; how does the outside world reach me? This acts as public key too. |
411 | ; CHANGE THIS | 591 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented |
412 | ExternalName = "http://127.0.0.1:8002" | 592 | ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}" |
413 | 593 | ||
414 | ; Does this grid allow incoming links to any region in it? | 594 | ; Does this grid allow incoming links to any region in it? |
415 | ; If false, HG TPs happen only to the Default regions specified in [GridService] section | 595 | ; If false, HG TPs happen only to the Default regions specified in [GridService] section |
@@ -418,23 +598,6 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
418 | ; If you run this gatekeeper server behind a proxy, set this to true | 598 | ; If you run this gatekeeper server behind a proxy, set this to true |
419 | ; HasProxy = false | 599 | ; HasProxy = false |
420 | 600 | ||
421 | ;; Regular expressions for controlling which client versions are accepted/denied. | ||
422 | ;; An empty string means nothing is checked. | ||
423 | ;; | ||
424 | ;; Example 1: allow only these 3 types of clients (any version of them) | ||
425 | ;; AllowedClients = "Imprudence|Hippo|Second Life" | ||
426 | ;; | ||
427 | ;; Example 2: allow all clients except these | ||
428 | ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald" | ||
429 | ;; | ||
430 | ;; Note that these are regular expressions, so every character counts. | ||
431 | ;; Also note that this is very weak security and should not be trusted as a reliable means | ||
432 | ;; for keeping bad clients out; modified clients can fake their identifiers. | ||
433 | ;; | ||
434 | ;; | ||
435 | ;AllowedClients = "" | ||
436 | ;DeniedClients = "" | ||
437 | |||
438 | ;; Are foreign visitors allowed? | 601 | ;; Are foreign visitors allowed? |
439 | ;ForeignAgentsAllowed = true | 602 | ;ForeignAgentsAllowed = true |
440 | ;; | 603 | ;; |
@@ -450,12 +613,12 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
450 | [UserAgentService] | 613 | [UserAgentService] |
451 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" | 614 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" |
452 | ;; for the service | 615 | ;; for the service |
453 | GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService" | 616 | GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService" |
454 | GridService = "OpenSim.Services.GridService.dll:GridService" | 617 | GridService = "OpenSim.Services.GridService.dll:GridService" |
455 | GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService" | 618 | GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService" |
456 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | 619 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" |
457 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | 620 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" |
458 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 621 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
459 | 622 | ||
460 | ; If you run this user agent server behind a proxy, set this to true | 623 | ; If you run this user agent server behind a proxy, set this to true |
461 | ; HasProxy = false | 624 | ; HasProxy = false |
@@ -471,7 +634,7 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
471 | ;; Are local users allowed to visit other grids? | 634 | ;; Are local users allowed to visit other grids? |
472 | ;; What user level? Use variables of this forrm: | 635 | ;; What user level? Use variables of this forrm: |
473 | ;; ForeignTripsAllowed_Level_<UserLevel> = true | false | 636 | ;; ForeignTripsAllowed_Level_<UserLevel> = true | false |
474 | ;; (the default is true) | 637 | ;; (the default is true) |
475 | ;; For example: | 638 | ;; For example: |
476 | ; ForeignTripsAllowed_Level_0 = false | 639 | ; ForeignTripsAllowed_Level_0 = false |
477 | ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it | 640 | ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it |
@@ -479,11 +642,17 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
479 | ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept | 642 | ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept |
480 | ;; Leave blank or commented for no exceptions. | 643 | ;; Leave blank or commented for no exceptions. |
481 | ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002" | 644 | ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002" |
482 | ;; | 645 | ;; |
483 | ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept. | 646 | ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept. |
484 | ;; Leave blank or commented for no exceptions. | 647 | ;; Leave blank or commented for no exceptions. |
485 | ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002" | 648 | ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002" |
486 | 649 | ||
650 | ;; This variable controls what is exposed to profiles of local users | ||
651 | ;; as seen from outside of this grid. Leave it uncommented for exposing | ||
652 | ;; UserTitle, UserFlags and the creation date. Uncomment and change to False | ||
653 | ;; to block this info from being exposed. | ||
654 | ; ShowUserDetailsInHGProfile = True | ||
655 | |||
487 | 656 | ||
488 | ; * The interface that local users get when they are in other grids. | 657 | ; * The interface that local users get when they are in other grids. |
489 | ; * This restricts the inventory operations while in other grids. | 658 | ; * This restricts the inventory operations while in other grids. |
@@ -494,15 +663,24 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
494 | [HGInventoryService] | 663 | [HGInventoryService] |
495 | ; For the InventoryServiceInConnector | 664 | ; For the InventoryServiceInConnector |
496 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService" | 665 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService" |
497 | ;; alternatives: | 666 | ;; alternatives: |
498 | ;; HG1.5, more permissive, not recommended, but still supported | 667 | ;; HG1.5, more permissive, not recommended, but still supported |
499 | ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService" | 668 | ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService" |
500 | ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust | 669 | ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust |
501 | ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService" | 670 | ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService" |
502 | 671 | ||
503 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 672 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
504 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | 673 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" |
505 | HomeURI = "http://127.0.0.1:8002" | 674 | |
675 | ; HGInventoryService is a public-facing inventory service that allows users to | ||
676 | ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector. | ||
677 | ; Hence, if the user has set up authentication in [Network] to protect their private services | ||
678 | ; make sure it is not set here. | ||
679 | AuthType = None | ||
680 | |||
681 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | ||
682 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
683 | |||
506 | 684 | ||
507 | ; * The interface that local users get when they are in other grids. | 685 | ; * The interface that local users get when they are in other grids. |
508 | ; * This restricts the access that the rest of the world has to | 686 | ; * This restricts the access that the rest of the world has to |
@@ -511,46 +689,76 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset | |||
511 | [HGAssetService] | 689 | [HGAssetService] |
512 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService" | 690 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService" |
513 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 691 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
514 | HomeURI = "http://127.0.0.1:8002" | 692 | |
693 | ; HGAssetService is a public-facing service that allows users to | ||
694 | ; read and create assets when on another grid. This reuses the general asset service connector. | ||
695 | ; Hence, if the user has set up authentication in [Network] to protect their private services | ||
696 | ; make sure it is overriden for this public service. | ||
697 | AuthType = None | ||
698 | |||
699 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | ||
700 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
515 | 701 | ||
516 | ;; The asset types that this grid can export to / import from other grids. | 702 | ;; The asset types that this grid can export to / import from other grids. |
517 | ;; Comma separated. | 703 | ;; Comma separated. |
518 | ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely: | 704 | ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely: |
519 | ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText, | 705 | ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText, |
520 | ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh | 706 | ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh |
521 | ;; | 707 | ;; |
522 | ;; Leave blank or commented if you don't want to apply any restrictions. | 708 | ;; Leave blank or commented if you don't want to apply any restrictions. |
523 | ;; A more strict, but still reasonable, policy may be to disallow the exchange | 709 | ;; A more strict, but still reasonable, policy may be to disallow the exchange |
524 | ;; of scripts, like so: | 710 | ;; of scripts, like so: |
525 | ; DisallowExport ="LSLText" | 711 | ; DisallowExport ="LSLText" |
526 | ; DisallowImport ="LSLBytecode" | 712 | ; DisallowImport ="LSLBytecode" |
527 | 713 | ||
714 | |||
528 | [HGFriendsService] | 715 | [HGFriendsService] |
529 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService" | 716 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService" |
530 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | 717 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" |
531 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | 718 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" |
532 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 719 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
533 | GridService = "OpenSim.Services.GridService.dll:GridService" | 720 | GridService = "OpenSim.Services.GridService.dll:GridService" |
534 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | 721 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" |
722 | |||
535 | 723 | ||
536 | [HGInstantMessageService] | 724 | [HGInstantMessageService] |
537 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService" | 725 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService" |
538 | GridService = "OpenSim.Services.GridService.dll:GridService" | 726 | GridService = "OpenSim.Services.GridService.dll:GridService" |
539 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | 727 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" |
540 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | 728 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" |
541 | ; This should always be true in the Robust config | 729 | ; This should always be true in the Robust config |
542 | InGatekeeper = True | 730 | InGatekeeper = True |
543 | 731 | ||
732 | |||
544 | [Messaging] | 733 | [Messaging] |
545 | ; If you have an Offline IM server, set the vars in this section, so that | 734 | ; OfflineIM |
546 | ; incomming IMs to local users from foreign grids can be saved | 735 | OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService" |
547 | ; | 736 | |
548 | ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {} | 737 | |
549 | ;; URL of web service for offline message storage | 738 | [Groups] |
550 | ; OfflineMessageURL = http://yourserver/Offline.php | 739 | ;; for the HG Groups service |
740 | OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService" | ||
741 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
742 | |||
743 | ;; What is the HomeURI of users associated with this grid? | ||
744 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | ||
745 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | ||
746 | |||
747 | ;; Sets the maximum number of groups an agent may join | ||
748 | ; MaxAgentGroups = 42 | ||
749 | |||
750 | |||
751 | [UserProfilesService] | ||
752 | LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService" | ||
753 | Enabled = false | ||
754 | ;; Configure this for separate profiles database | ||
755 | ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" | ||
756 | ;; Realm = UserProfiles | ||
757 | UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService | ||
758 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
551 | 759 | ||
552 | ;; Control whether group messages are forwarded to offline users. | ||
553 | ;; Default is true. | ||
554 | ;; This applies to the core groups module (Flotsam) only. | ||
555 | ; ForwardOfflineGroupMessages = true | ||
556 | 760 | ||
761 | [BakedTextureService] | ||
762 | LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes" | ||
763 | ;; This directory must be writable by the user ROBUST runs as. It will be created automatically. | ||
764 | BaseDirectory = "./bakes" | ||