From 13b2ac14253a5f9ec75ec9712d1fd2fe17d1d005 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Sun, 4 May 2014 20:54:42 -0700
Subject: 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.
---
bin/config-include/GridCommon.ini.example | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
(limited to 'bin')
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 @@
HomeURI = "http://mygridserver.com:8002"
Gatekeeper = "http://mygridserver.com:8002"
;; If you want to protect your assets from being copied by foreign visitors
- ;; uncomment the next line. You may want to do this on sims that have licensed content.
- ; OutboundPermission = False
+ ;; set this to false. You may want to do this on sims that have licensed content.
+ ;; Default is true.
+ ; OutboundPermission = True
;; Send visual reminder to local users that their inventories are unavailable while they are traveling
;; and available when they return. True by default.
;RestrictInventoryAccessAbroad = True
+ ;; Warning: advanced and unusual. Default is false.
+ ;; Enables configurations where grids share user services, including inventory,
+ ;; while separating regions' assets from users' assets. Asset transfer between
+ ;; the users' asset server and the regions' asset server is done in HG-like manner.
+ ; CheckSeparateAssets = false
+ ; RegionHGAssetServerURI = http://mygridserver.com:8002
+
[HGAssetService]
;
--
cgit v1.1
From 812f5e124df0ef77a24c4937cc35cef0cac13cad Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Wed, 7 May 2014 18:39:56 +0100
Subject: Remove duplicate HypergridLinker entry from [GridService] in
Robust.HG.ini.example
---
bin/Robust.HG.ini.example | 2 --
1 file changed, 2 deletions(-)
(limited to 'bin')
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 14e9bff..3dd984e 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -163,8 +163,6 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
[GridService]
LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
- HypergridLinker = true
-
; Realm = "regions"
; AllowDuplicateNames = "True"
--
cgit v1.1
From 2b33677402c3a18ed753e78e02bb191bfcdcee5b Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Wed, 7 May 2014 23:32:02 +0100
Subject: Add GridUserService service config to [UserAccountService] in
Robust[.HG].ini.example so that home can be set for new users rather than
always warning that it can't be set.
Code already exists to do this but forgot to put entry into config files a long time ago.
Thanks to AliciaRaven for the spot.
Relates to http://opensimulator.org/mantis/view.php?id=7155
---
bin/Robust.HG.ini.example | 1 +
bin/Robust.ini.example | 1 +
2 files changed, 2 insertions(+)
(limited to 'bin')
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 3dd984e..e385200 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -282,6 +282,7 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
GridService = "OpenSim.Services.GridService.dll:GridService"
InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
+ GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index 829e393..2f1a627 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -240,6 +240,7 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
GridService = "OpenSim.Services.GridService.dll:GridService"
InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
+ GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
--
cgit v1.1
From b46be88db62bcfa7dcf70c3677a1a1270d177a22 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Mon, 19 May 2014 22:45:17 +0100
Subject: Split verbose groups messaging logging into its own setting separate
from that of the groups module.
This is to allow us to get useful information on messaging without being overwhelmed by the rest of groups debug.
Enabled with [Groups] DebugMessagingEnabled = true in config (default false)
Or "debug groups messaging verbose true|false on the console" (similar to existing groups setting).
Done for both xmlrpc and V2 groups.
---
bin/OpenSimDefaults.ini | 3 +++
1 file changed, 3 insertions(+)
(limited to 'bin')
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index cae2958..3b7a611 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -1664,6 +1664,9 @@
; This makes the Groups modules very chatty on the console.
DebugEnabled = false
+ ; This makes the Groups Messaging modules very chatty on the console.
+ DebugMessagingEnabled = false
+
; Groups data is cached for this number of seconds before another request is made to the groups service
; Set to 0 to disable the cache.
; Default is 30 seconds
--
cgit v1.1
From 77a331fce360fbd4640bd98ec2f6dfb00d31eac5 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Mon, 19 May 2014 23:00:04 +0100
Subject: Add DebugMessagingEnabled = false to OpenSim.ini.example for
consistency. Slightly simplify config comments.
---
bin/OpenSim.ini.example | 5 ++++-
bin/OpenSimDefaults.ini | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
(limited to 'bin')
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 7f2cba6..f3cd603 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1033,9 +1033,12 @@
; Applies Flotsam Group only. V2 has this always on, no other option
; MessageOnlineUsersOnly = false
- ;; This makes the Groups modules very chatty on the console.
+ ;; This makes the Group module very chatty on the console.
; DebugEnabled = false
+ ; This makes the Group Messaging module very chatty on the console.
+ ; DebugMessagingEnabled = false
+
;; XmlRpc Security settings. These must match those set on your backend
;; groups service if the service is using these keys
; XmlRpcServiceReadKey = 1234
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 3b7a611..fd6e8b7 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -1661,10 +1661,10 @@
; Enable Group Notices
;NoticesEnabled = true
- ; This makes the Groups modules very chatty on the console.
+ ; This makes the Group module very chatty on the console.
DebugEnabled = false
- ; This makes the Groups Messaging modules very chatty on the console.
+ ; This makes the Groups Messaging module very chatty on the console.
DebugMessagingEnabled = false
; Groups data is cached for this number of seconds before another request is made to the groups service
--
cgit v1.1
From 20f20895cf1444071d5edc42e11a1fb94b1b1079 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Fri, 23 May 2014 16:19:43 -0700
Subject: Adds optional HTTP Basic Authentication to Robust service connectors.
---
bin/OpenSim.ini.example | 10 ++++++++++
bin/Robust.HG.ini.example | 15 +++++++++++++++
bin/Robust.ini.example | 13 +++++++++++++
3 files changed, 38 insertions(+)
(limited to 'bin')
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index f3cd603..3f9aed6 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -470,6 +470,16 @@
;; web server
; user_agent = "OpenSim LSL (Mozilla Compatible)"
+ ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
+ ;; Use this if your central services in port 8003 need to be accessible on the Internet
+ ;; but you want to protect them from unauthorized access. The username and password
+ ;; here need to match the ones in the Robust service configuration.
+ ; AuthType = "BasicHttpAuthentication"
+ ; HttpAuthUsername = "some_username"
+ ; HttpAuthPassword = "some_password"
+ ;;
+ ;; Any of these 3 variables above can be overriden in any of the service sections.
+
[XMLRPC]
;# {XmlRpcRouterModule} {} {Module used to route incoming llRemoteData calls} {XmlRpcRouterModule XmlRpcGridRouterModule} XmlRpcRouterModule
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index e385200..aaa78ff 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -104,6 +104,21 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
; Password for cert
; cert_pass = "password"
+ ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
+ ;; Use this if your central services in port 8003 need to be accessible on the Internet
+ ;; but you want to protect them from unauthorized access.
+ ; AuthType = "BasicHttpAuthentication"
+ ; HttpAuthUsername = "some_username"
+ ; HttpAuthPassword = "some_password"
+ ;;
+ ;; AuthType above can be overriden in any of the service sections below by
+ ; AuthType = "None"
+ ;; This is useful in cases where you want to protect most of the services,
+ ;; but unprotect individual services. Username and Password can also be
+ ;; overriden if you want to use different credentials for the different services.
+ ;; Hypgergrid services are not affected by this; they are publicly available
+ ;; by design.
+
; * The following are for the remote console
; * They have no effect for the local or basic console types
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index 2f1a627..203c0e0 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -81,6 +81,19 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
; Password for cert
; cert_pass = "password"
+ ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
+ ;; Use this if your central services in port 8003 need to be accessible on the Internet
+ ;; but you want to protect them from unauthorized access.
+ ; AuthType = "BasicHttpAuthentication"
+ ; HttpAuthUsername = "some_username"
+ ; HttpAuthPassword = "some_password"
+ ;;
+ ;; AuthType above can be overriden in any of the service sections below by
+ ; AuthType = "None"
+ ;; This is useful in cases where you want to protect most of the services,
+ ;; but unprotect individual services. Username and Password can also be
+ ;; overriden if you want to use different credentials for the different services.
+
; * The following are for the remote console
; * They have no effect for the local or basic console types
--
cgit v1.1
From 464d31b70bc870bd0945cb26c51dc1df48c2ec2a Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Tue, 27 May 2014 20:42:36 +0100
Subject: Stop appending redundant newline to console messages in Robust and
pCampbot configs
This is to fix an issue since recent commit fbcb763 where these are no longer removed automatically.
OpenSim.*.config was already not appending these newlines
---
bin/Robust.32BitLaunch.exe.config | 2 +-
bin/Robust.exe.config | 2 +-
bin/pCampBot.exe.config | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
(limited to 'bin')
diff --git a/bin/Robust.32BitLaunch.exe.config b/bin/Robust.32BitLaunch.exe.config
index 95061e1..0399a1b 100644
--- a/bin/Robust.32BitLaunch.exe.config
+++ b/bin/Robust.32BitLaunch.exe.config
@@ -17,7 +17,7 @@
-
+
diff --git a/bin/Robust.exe.config b/bin/Robust.exe.config
index b9e01f1..3a978b2 100644
--- a/bin/Robust.exe.config
+++ b/bin/Robust.exe.config
@@ -17,7 +17,7 @@
-
+
diff --git a/bin/pCampBot.exe.config b/bin/pCampBot.exe.config
index 7912991..89350b0 100755
--- a/bin/pCampBot.exe.config
+++ b/bin/pCampBot.exe.config
@@ -11,7 +11,7 @@
-
+
--
cgit v1.1