diff options
author | Diva Canto | 2014-05-04 20:54:42 -0700 |
---|---|---|
committer | Diva Canto | 2014-05-04 20:54:42 -0700 |
commit | 13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005 (patch) | |
tree | 6f8da9dedee17d5e09de81b81c16d04149e854e2 /bin/config-include/GridCommon.ini.example | |
parent | Please note: older simulators (0.7.6) still send the info about gzip in Conte... (diff) | |
download | opensim-SC-13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005.zip opensim-SC-13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005.tar.gz opensim-SC-13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005.tar.bz2 opensim-SC-13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005.tar.xz |
Makes it possible to support grids in which all the simulators share all central services of a Robust server EXCEPT assets. In other words, grids where the simulators' assets are kept in one DB and the users' inventory assets
are kept on another. When users rez items from inventory or take objects from world, an HG-like asset copy takes place between the 2 servers, the world asset server and the user's asset server. This makes the simulators independent of the central asset server.
Note that this an advanced configuration and requires some security strengthening coming up.
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 5460c0a..59eebd8 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example | |||
@@ -160,13 +160,21 @@ | |||
160 | HomeURI = "http://mygridserver.com:8002" | 160 | HomeURI = "http://mygridserver.com:8002" |
161 | Gatekeeper = "http://mygridserver.com:8002" | 161 | Gatekeeper = "http://mygridserver.com:8002" |
162 | ;; If you want to protect your assets from being copied by foreign visitors | 162 | ;; If you want to protect your assets from being copied by foreign visitors |
163 | ;; uncomment the next line. You may want to do this on sims that have licensed content. | 163 | ;; set this to false. You may want to do this on sims that have licensed content. |
164 | ; OutboundPermission = False | 164 | ;; Default is true. |
165 | ; OutboundPermission = True | ||
165 | 166 | ||
166 | ;; Send visual reminder to local users that their inventories are unavailable while they are traveling | 167 | ;; Send visual reminder to local users that their inventories are unavailable while they are traveling |
167 | ;; and available when they return. True by default. | 168 | ;; and available when they return. True by default. |
168 | ;RestrictInventoryAccessAbroad = True | 169 | ;RestrictInventoryAccessAbroad = True |
169 | 170 | ||
171 | ;; Warning: advanced and unusual. Default is false. | ||
172 | ;; Enables configurations where grids share user services, including inventory, | ||
173 | ;; while separating regions' assets from users' assets. Asset transfer between | ||
174 | ;; the users' asset server and the regions' asset server is done in HG-like manner. | ||
175 | ; CheckSeparateAssets = false | ||
176 | ; RegionHGAssetServerURI = http://mygridserver.com:8002 | ||
177 | |||
170 | 178 | ||
171 | [HGAssetService] | 179 | [HGAssetService] |
172 | ; | 180 | ; |