aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.HG.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Robust.HG.ini.example')
-rw-r--r--bin/Robust.HG.ini.example38
1 files changed, 28 insertions, 10 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index dbac73b..9adf1ac 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -24,7 +24,7 @@
24ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector,HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector,8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector" 24ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector,HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector,8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
25 25
26; * This is common for all services, it's the network setup for the entire 26; * This is common for all services, it's the network setup for the entire
27; * server instance, if none if specified above 27; * server instance, if none is specified above
28; * 28; *
29[Network] 29[Network]
30 port = 8003 30 port = 8003
@@ -48,7 +48,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
48[AssetService] 48[AssetService]
49 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 49 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
50 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 50 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
51 AssetLoaderArgs = "assets/AssetSets.xml" 51 AssetLoaderArgs = "./assets/AssetSets.xml"
52 52
53; * This configuration loads the inventory server modules. It duplicates 53; * This configuration loads the inventory server modules. It duplicates
54; * the function of the legacy inventory server 54; * the function of the legacy inventory server
@@ -68,6 +68,12 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
68 ;; Perform distance check for the creation of a linked region 68 ;; Perform distance check for the creation of a linked region
69 ; Check4096 = "True" 69 ; Check4096 = "True"
70 70
71 ;; Needed to display non-default map tile images for linked regions
72 AssetService = "OpenSim.Services.AssetService.dll:AssetService"
73
74 ;; Directory for map tile images of linked regions
75 ; MapTileDirectory = "./"
76
71 ;; Next, we can specify properties of regions, including default and fallback regions 77 ;; Next, we can specify properties of regions, including default and fallback regions
72 ;; The syntax is: Region_<RegionName> = "<flags>" 78 ;; The syntax is: Region_<RegionName> = "<flags>"
73 ;; or: Region_<RegionID> = "<flags>" 79 ;; or: Region_<RegionID> = "<flags>"
@@ -79,11 +85,22 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
79; * This is the configuration for the freeswitch server in grid mode 85; * This is the configuration for the freeswitch server in grid mode
80[FreeswitchService] 86[FreeswitchService]
81 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 87 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
88 ;; IP of your FS server
89 ; ServerAddress = 127.0.0.1
90
91 ;; All other options are - well - optional
92 ; Realm = "127.0.0.1"
93 ; SIPProxy = "127.0.0.1:5060"
94 ; EchoServer = "127.0.0.1"
95 ; EchoPort = 50505
96 ; AttemptSTUN = "false"
97 ; DefaultTimeout = 5000
98 ; Context = "default"
99 ; UserName = "freeswitch"
100 ; Password = "password"
82 101
83; * This is the new style authentication service. Currently, only MySQL 102; * This is the new style authentication service. Currently, only MySQL
84; * is implemented. "Realm" is the table that is used for user lookup. 103; * is implemented.
85; * It defaults to "useraccounts", which uses the new style.
86; * Realm = "users" will use the legacy tables as an authentication source
87; * 104; *
88[AuthenticationService] 105[AuthenticationService]
89 ; for the server connector 106 ; for the server connector
@@ -97,7 +114,8 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
97 114
98; * This is the new style user service. 115; * This is the new style user service.
99; * "Realm" is the table that is used for user lookup. 116; * "Realm" is the table that is used for user lookup.
100; * It defaults to "users", which uses the legacy tables 117; * It defaults to "useraccounts", which uses the new style.
118; * Realm = "users" will use the legacy tables as an authentication source
101; * 119; *
102[UserAccountService] 120[UserAccountService]
103 ; for the server connector 121 ; for the server connector
@@ -150,7 +168,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
150 AllowRemoteSetLoginLevel = "false" 168 AllowRemoteSetLoginLevel = "false"
151 169
152 ; If you run this login server behind a proxy, set this to true 170 ; If you run this login server behind a proxy, set this to true
153 ; HasProxy = true 171 ; HasProxy = false
154 172
155 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs) 173 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
156 ; CHANGE THIS 174 ; CHANGE THIS
@@ -159,7 +177,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
159 SRV_HomeURI = "http://127.0.0.1:8002" 177 SRV_HomeURI = "http://127.0.0.1:8002"
160 SRV_InventoryServerURI = "http://127.0.0.1:8002" 178 SRV_InventoryServerURI = "http://127.0.0.1:8002"
161 SRV_AssetServerURI = "http://127.0.0.1:8002" 179 SRV_AssetServerURI = "http://127.0.0.1:8002"
162 SRV_ProfileServerURI = "http://127.0.0.1:8002" 180 SRV_ProfileServerURI = "http://127.0.0.1:8002/user"
163 181
164[GridInfoService] 182[GridInfoService]
165 ; These settings are used to return information on a get_grid_info call. 183 ; These settings are used to return information on a get_grid_info call.
@@ -218,7 +236,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
218 AllowTeleportsToAnyRegion = true 236 AllowTeleportsToAnyRegion = true
219 237
220 ; If you run this gatekeeper server behind a proxy, set this to true 238 ; If you run this gatekeeper server behind a proxy, set this to true
221 ; HasProxy = true 239 ; HasProxy = false
222 240
223 241
224[UserAgentService] 242[UserAgentService]
@@ -229,7 +247,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
229 GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService" 247 GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
230 248
231 ; If you run this user agent server behind a proxy, set this to true 249 ; If you run this user agent server behind a proxy, set this to true
232 ; HasProxy = true 250 ; HasProxy = false
233 251
234 ;; If you separate the UserAgentService from the LoginService, set this to 252 ;; If you separate the UserAgentService from the LoginService, set this to
235 ;; the IP address of the machine where your LoginService is 253 ;; the IP address of the machine where your LoginService is