diff options
Diffstat (limited to 'bin/Robust.ini.example')
-rw-r--r-- | bin/Robust.ini.example | 68 |
1 files changed, 53 insertions, 15 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example index d932ce7..de6fc28 100644 --- a/bin/Robust.ini.example +++ b/bin/Robust.ini.example | |||
@@ -13,19 +13,21 @@ | |||
13 | ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] | 13 | ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] |
14 | ; * | 14 | ; * |
15 | [Startup] | 15 | [Startup] |
16 | 16 | ; Place to create a PID file | |
17 | ; Plugin Registry Location | 17 | ; If no path if specified then a PID file is not created. |
18 | ; Set path to directory for plugin registry. Information | 18 | ; PIDFile = "/tmp/my.pid" |
19 | ; about the registered repositories and installed plugins | 19 | |
20 | ; will be stored here | 20 | ; Plugin Registry Location |
21 | ; The Robust.exe process must hvae R/W access to the location | 21 | ; Set path to directory for plugin registry. Information |
22 | RegistryLocation = "." | 22 | ; about the registered repositories and installed plugins |
23 | 23 | ; will be stored here | |
24 | 24 | ; The Robust.exe process must have R/W access to the location | |
25 | ; Modular configurations | 25 | RegistryLocation = "." |
26 | ; Set path to directory for modular ini files... | 26 | |
27 | ; The Robust.exe process must hvae R/W access to the location | 27 | ; Modular configurations |
28 | ConfigDirectory = "/home/opensim/etc/Configs" | 28 | ; Set path to directory for modular ini files... |
29 | ; The Robust.exe process must have R/W access to the location | ||
30 | ConfigDirectory = "." | ||
29 | 31 | ||
30 | [ServiceList] | 32 | [ServiceList] |
31 | AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" | 33 | AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" |
@@ -49,6 +51,8 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
49 | ;; Uncomment this if you want Groups V2 to work | 51 | ;; Uncomment this if you want Groups V2 to work |
50 | ;GroupsServiceConnector = "8003/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" | 52 | ;GroupsServiceConnector = "8003/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" |
51 | 53 | ||
54 | ;; Uncomment for UserProfiles see [UserProfilesService] to configure... | ||
55 | ; UserProfilesServiceConnector = "8002/OpenSim.Server.Handlers.dll:UserProfilesConnector" | ||
52 | 56 | ||
53 | ; * This is common for all services, it's the network setup for the entire | 57 | ; * This is common for all services, it's the network setup for the entire |
54 | ; * server instance, if none is specified above | 58 | ; * server instance, if none is specified above |
@@ -128,8 +132,24 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
128 | ;; Next, we can specify properties of regions, including default and fallback regions | 132 | ;; Next, we can specify properties of regions, including default and fallback regions |
129 | ;; The syntax is: Region_<RegionName> = "<flags>" | 133 | ;; The syntax is: Region_<RegionName> = "<flags>" |
130 | ;; or: Region_<RegionID> = "<flags>" | 134 | ;; or: Region_<RegionID> = "<flags>" |
131 | ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate | 135 | ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate |
132 | ;; For example: | 136 | ;; |
137 | ;; 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.) | ||
138 | ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion | ||
139 | ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified | ||
140 | ;; an explicit region. | ||
141 | ;; | ||
142 | ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online | ||
143 | ;; region will be used. | ||
144 | ;; | ||
145 | ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the | ||
146 | ;; order specified. This only applies to local logins at this time, not Hypergrid connections. | ||
147 | ;; | ||
148 | ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins. | ||
149 | ;; | ||
150 | ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid. | ||
151 | ;; | ||
152 | ;; Example specification: | ||
133 | ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" | 153 | ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" |
134 | ; (replace spaces with underscore) | 154 | ; (replace spaces with underscore) |
135 | 155 | ||
@@ -270,6 +290,9 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
270 | ; Ask co-operative viewers to use a different currency name | 290 | ; Ask co-operative viewers to use a different currency name |
271 | ;Currency = "" | 291 | ;Currency = "" |
272 | 292 | ||
293 | ;; Set minimum fee to publish classified | ||
294 | ; ClassifiedFee = 0 | ||
295 | |||
273 | WelcomeMessage = "Welcome, Avatar!" | 296 | WelcomeMessage = "Welcome, Avatar!" |
274 | AllowRemoteSetLoginLevel = "false" | 297 | AllowRemoteSetLoginLevel = "false" |
275 | 298 | ||
@@ -286,6 +309,12 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
286 | ; For V2/V3 webapp authentication SSO | 309 | ; For V2/V3 webapp authentication SSO |
287 | ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/" | 310 | ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/" |
288 | 311 | ||
312 | ; For V3 destination guide | ||
313 | ; DestinationGuide = "http://127.0.0.1/guide" | ||
314 | |||
315 | ; For V3 avatar picker (( work in progress )) | ||
316 | ; AvatarPicker = "http://127.0.0.1/avatars" | ||
317 | |||
289 | ; If you run this login server behind a proxy, set this to true | 318 | ; If you run this login server behind a proxy, set this to true |
290 | ; HasProxy = false | 319 | ; HasProxy = false |
291 | 320 | ||
@@ -383,4 +412,13 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
383 | ; password help: optional: page providing password assistance for users of your grid | 412 | ; password help: optional: page providing password assistance for users of your grid |
384 | ;password = http://127.0.0.1/password | 413 | ;password = http://127.0.0.1/password |
385 | 414 | ||
415 | [UserProfilesService] | ||
416 | LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService" | ||
417 | Enabled = false | ||
418 | ;; Configure this for separate profiles database | ||
419 | ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" | ||
420 | ;; Realm = UserProfiles | ||
421 | UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService | ||
422 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
423 | |||
386 | 424 | ||