diff options
author | Ai Austin | 2015-08-25 11:22:03 +0100 |
---|---|---|
committer | Diva Canto | 2015-08-25 20:42:02 -0700 |
commit | 9d104f54537eddd7bd25570fb15eaaee652da62d (patch) | |
tree | c8d75dcc075bcac92df48ae937c2152d8302a20b /bin | |
parent | Revert "BulletSim: delay adding a scene presence to the list of presences" (diff) | |
download | opensim-SC-9d104f54537eddd7bd25570fb15eaaee652da62d.zip opensim-SC-9d104f54537eddd7bd25570fb15eaaee652da62d.tar.gz opensim-SC-9d104f54537eddd7bd25570fb15eaaee652da62d.tar.bz2 opensim-SC-9d104f54537eddd7bd25570fb15eaaee652da62d.tar.xz |
Changes to .ini.example files to improve instructions and workflow for standalone setups
Clarify what must be changed in initial .ini files to create a working
standalone setup now that [Const] variables are used. Fix separator used
in one of choice lists for [Const] BaseURL descriptor. Minor changes to
line spacing of some sections in StandaloneCommon.ini.example file for
layout regularity. Correction of a typo in comment.
Signed-off-by: Diva Canto <diva@metaverseink.com>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.ini.example | 20 | ||||
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 18 |
2 files changed, 18 insertions, 20 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 138e498..2e7eb65 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -3,9 +3,12 @@ | |||
3 | ;; If it's named OpenSim.ini.example then you will need to copy it to | 3 | ;; If it's named OpenSim.ini.example then you will need to copy it to |
4 | ;; OpenSim.ini first (if that file does not already exist) | 4 | ;; OpenSim.ini first (if that file does not already exist) |
5 | ;; | 5 | ;; |
6 | ;; If you are copying, then once you have copied OpenSim.ini.example to | 6 | ;; Once you have copied OpenSim.ini.example to OpenSim.ini you will at least |
7 | ;; OpenSim.ini you will need to pick an architecture in the [Architecture] | 7 | ;; need to set the constants in the [Const] section and pick an architecture |
8 | ;; section at the end of this file. | 8 | ;; in the [Architecture] section at the end of this file. The architecture |
9 | ;; will require a suitable .ini file in the config-include directory, either | ||
10 | ;; Standalone.ini or GridCommon.ini which you can copy and modify from the | ||
11 | ;; available .example files. | ||
9 | ;; | 12 | ;; |
10 | ;; The settings in this file are in the form "<key> = <value>". For example, | 13 | ;; The settings in this file are in the form "<key> = <value>". For example, |
11 | ;; save_crashes = false in the [Startup] section below. | 14 | ;; save_crashes = false in the [Startup] section below. |
@@ -46,12 +49,13 @@ | |||
46 | ; For a grid these will usually be the externally accessible IP/DNS | 49 | ; For a grid these will usually be the externally accessible IP/DNS |
47 | ; name and use default public port 8002 and default private port 8003 | 50 | ; name and use default public port 8002 and default private port 8003 |
48 | ; For a standalone this will usually be the externally accessible IP/DNS | 51 | ; For a standalone this will usually be the externally accessible IP/DNS |
49 | ; name and use a single common port 9000 | 52 | ; name and use default public port 9000. The private port is not used |
53 | ; in the configuration for a standalone. | ||
50 | 54 | ||
51 | ;# {BaseURL} {} {BaseURL} {"http://example.com","http://127.0.0.1"} "http://127.0.0.1" | 55 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" |
52 | BaseURL = http://127.0.0.1 | 56 | BaseURL = http://127.0.0.1 |
53 | 57 | ||
54 | ;# {PublicPort} {} {PublicPort} {8002} "8002" | 58 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" |
55 | PublicPort = "8002" | 59 | PublicPort = "8002" |
56 | 60 | ||
57 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | 61 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" |
@@ -1068,7 +1072,7 @@ | |||
1068 | 1072 | ||
1069 | ;# {MessagingModule} {MessagingEnabled:true} {Module to use for groups messaging} {GroupsMessagingModule "Groups Messaging Module V2"} GroupsMessagingModule | 1073 | ;# {MessagingModule} {MessagingEnabled:true} {Module to use for groups messaging} {GroupsMessagingModule "Groups Messaging Module V2"} GroupsMessagingModule |
1070 | ; MessagingModule = GroupsMessagingModule | 1074 | ; MessagingModule = GroupsMessagingModule |
1071 | ;; or use V2 for Groups V2 | 1075 | ; or use "Groups Messaging Module V2" for Groups V2 |
1072 | ; MessagingModule = "Groups Messaging Module V2" | 1076 | ; MessagingModule = "Groups Messaging Module V2" |
1073 | 1077 | ||
1074 | ;# {NoticesEnabled} {Module:GroupsModule Module:Groups Module V2} {Enable group notices?} {true false} true | 1078 | ;# {NoticesEnabled} {Module:GroupsModule Module:Groups Module V2} {Enable group notices?} {true false} true |
@@ -1131,7 +1135,7 @@ | |||
1131 | 1135 | ||
1132 | ;; | 1136 | ;; |
1133 | ;; Optional module to highlight God names in the viewer. | 1137 | ;; Optional module to highlight God names in the viewer. |
1134 | ;; Uncomment and costumize appropriately if you want this behavior. | 1138 | ;; Uncomment and customize appropriately if you want this behavior. |
1135 | ;; | 1139 | ;; |
1136 | ;[GodNames] | 1140 | ;[GodNames] |
1137 | ; Enabled = false | 1141 | ; Enabled = false |
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index 1063040..09c902c 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example | |||
@@ -54,12 +54,12 @@ | |||
54 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" | 54 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
55 | 55 | ||
56 | [Modules] | 56 | [Modules] |
57 | ;; Choose one cache module and the corresponding config file, if it exists. | 57 | ;; Optionally choose one cache module and the corresponding config file, if it exists. |
58 | ;; Copy the config .example file into your own .ini file and alter that | 58 | ;; Copy the config .example file into your own .ini file and alter that |
59 | ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained. | 59 | ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained. |
60 | 60 | ||
61 | AssetCaching = "FlotsamAssetCache" | 61 | ;AssetCaching = "FlotsamAssetCache" |
62 | Include-FlotsamCache = "config-include/FlotsamCache.ini" | 62 | ;Include-FlotsamCache = "config-include/FlotsamCache.ini" |
63 | 63 | ||
64 | ;AssetCaching = "CenomeMemoryAssetCache" | 64 | ;AssetCaching = "CenomeMemoryAssetCache" |
65 | ;Include-CenomeCache = "config-include/CenomeCache.ini" | 65 | ;Include-CenomeCache = "config-include/CenomeCache.ini" |
@@ -73,7 +73,6 @@ | |||
73 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | 73 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" |
74 | AssetLoaderArgs = "assets/AssetSets.xml" | 74 | AssetLoaderArgs = "assets/AssetSets.xml" |
75 | 75 | ||
76 | |||
77 | [GridService] | 76 | [GridService] |
78 | ;; For in-memory region storage (default) | 77 | ;; For in-memory region storage (default) |
79 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | 78 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" |
@@ -84,7 +83,7 @@ | |||
84 | ; MapTileDirectory = "./maptiles" | 83 | ; MapTileDirectory = "./maptiles" |
85 | 84 | ||
86 | ;; Next, we can specify properties of regions, including default and fallback regions | 85 | ;; Next, we can specify properties of regions, including default and fallback regions |
87 | ;; The syntax is: Region_<RegioName> = "<flags>" | 86 | ;; The syntax is: Region_<RegionName> = "<flags>" |
88 | ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut | 87 | ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut |
89 | ;; | 88 | ;; |
90 | ;; 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.) | 89 | ;; 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.) |
@@ -350,7 +349,6 @@ | |||
350 | ;; to block this info from being exposed. | 349 | ;; to block this info from being exposed. |
351 | ; ShowUserDetailsInHGProfile = True | 350 | ; ShowUserDetailsInHGProfile = True |
352 | 351 | ||
353 | |||
354 | [HGInventoryService] | 352 | [HGInventoryService] |
355 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented | 353 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented |
356 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | 354 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
@@ -371,7 +369,6 @@ | |||
371 | ; DisallowExport ="LSLText" | 369 | ; DisallowExport ="LSLText" |
372 | ; DisallowImport ="LSLBytecode" | 370 | ; DisallowImport ="LSLBytecode" |
373 | 371 | ||
374 | |||
375 | [HGInventoryAccessModule] | 372 | [HGInventoryAccessModule] |
376 | ;; If you have these set under [Hypergrid], no need to set it here, leave it commented | 373 | ;; If you have these set under [Hypergrid], no need to set it here, leave it commented |
377 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" | 374 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
@@ -395,7 +392,6 @@ | |||
395 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented | 392 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented |
396 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" | 393 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
397 | 394 | ||
398 | |||
399 | [EntityTransfer] | 395 | [EntityTransfer] |
400 | ;; User level from which local users are allowed to HG teleport. Default 0 (all users) | 396 | ;; User level from which local users are allowed to HG teleport. Default 0 (all users) |
401 | ;LevelHGTeleport = 0 | 397 | ;LevelHGTeleport = 0 |
@@ -408,12 +404,10 @@ | |||
408 | ;; Comma-separated list of account names | 404 | ;; Comma-separated list of account names |
409 | AccountForAppearance = "Test User, Astronaut Smith" | 405 | AccountForAppearance = "Test User, Astronaut Smith" |
410 | 406 | ||
411 | ;; UserProfiles Service | ||
412 | ;; | ||
413 | ;; To use, set Enabled to true then configure for your site... | ||
414 | [UserProfilesService] | 407 | [UserProfilesService] |
415 | LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService" | 408 | ;; To use, set Enabled to true then configure for your site... |
416 | Enabled = false | 409 | Enabled = false |
410 | LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService" | ||
417 | 411 | ||
418 | ;; Configure this for separate databse | 412 | ;; Configure this for separate databse |
419 | ; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;" | 413 | ; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;" |