aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.HG.ini.example
diff options
context:
space:
mode:
authorMelanie Thielker2014-06-21 00:39:55 +0200
committerMelanie Thielker2014-06-21 00:39:55 +0200
commit159fcbf150b7da0e229b29aa7b94793484543d12 (patch)
treeb8c0ff3b4c758a3fba8315b556c923ef4c02a185 /bin/Robust.HG.ini.example
parentMerge commit '68c8633ba18f0a11cfc0ed04d1d0c7c59e6cec76' (diff)
parentMerge branch 'master' into careminster (diff)
downloadopensim-SC_OLD-159fcbf150b7da0e229b29aa7b94793484543d12.zip
opensim-SC_OLD-159fcbf150b7da0e229b29aa7b94793484543d12.tar.gz
opensim-SC_OLD-159fcbf150b7da0e229b29aa7b94793484543d12.tar.bz2
opensim-SC_OLD-159fcbf150b7da0e229b29aa7b94793484543d12.tar.xz
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster
Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
Diffstat (limited to 'bin/Robust.HG.ini.example')
-rw-r--r--bin/Robust.HG.ini.example85
1 files changed, 66 insertions, 19 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 581c31d..965e241 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -21,18 +21,21 @@
21; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] 21; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
22; * 22; *
23[Startup] 23[Startup]
24 24 ; Place to create a PID file
25 ; Plugin Registry Location 25 ; If no path if specified then a PID file is not created.
26 ; Set path to directory for plugin registry. Information 26 ; PIDFile = "/tmp/Robust.exe.pid"
27 ; about the registered repositories and installed plugins 27
28 ; will be stored here 28 ; Plugin Registry Location
29 ; The Robust.exe process must have R/W access to the location 29 ; Set path to directory for plugin registry. Information
30 RegistryLocation = "." 30 ; about the registered repositories and installed plugins
31 31 ; will be stored here
32 ; Modular configurations 32 ; The Robust.exe process must have R/W access to the location
33 ; Set path to directory for modular ini files... 33 RegistryLocation = "."
34 ; The Robust.exe process must have R/W access to the location 34
35 ConfigDirectory = "/home/opensim/etc/Configs" 35 ; Modular configurations
36 ; Set path to directory for modular ini files...
37 ; The Robust.exe process must have R/W access to the location
38 ConfigDirectory = "."
36 39
37[ServiceList] 40[ServiceList]
38 41
@@ -68,10 +71,12 @@ HGInventoryServiceConnector = "HGInventoryService@8002/OpenSim.Server.Handlers.d
68HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector" 71HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
69;; Uncomment this if you want Groups V2, HG to work 72;; Uncomment this if you want Groups V2, HG to work
70; HGGroupsServiceConnector = "8002/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector" 73; HGGroupsServiceConnector = "8002/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector"
71
72;; Additions for other add-on modules. For example: 74;; Additions for other add-on modules. For example:
73;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector" 75;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector"
74 76
77;; Uncomment for UserProfiles see [UserProfilesService] to configure...
78; UserProfilesServiceConnector = "8002/OpenSim.Server.Handlers.dll:UserProfilesConnector"
79
75; * This is common for all services, it's the network setup for the entire 80; * This is common for all services, it's the network setup for the entire
76; * server instance, if none is specified above 81; * server instance, if none is specified above
77; * 82; *
@@ -121,6 +126,15 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
121 ; GatekeeperURI = "http://127.0.0.1:8002" 126 ; GatekeeperURI = "http://127.0.0.1:8002"
122 127
123[DatabaseService] 128[DatabaseService]
129 ; PGSQL
130 ; Uncomment these lines if you want to use PGSQL storage
131 ; Change the connection string to your db details
132 ;StorageProvider = "OpenSim.Data.PGSQL.dll"
133 ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
134
135 ; MySQL
136 ; Uncomment these lines if you want to use MySQL storage
137 ; Change the connection string to your db details
124 StorageProvider = "OpenSim.Data.MySQL.dll" 138 StorageProvider = "OpenSim.Data.MySQL.dll"
125 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" 139 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
126 140
@@ -146,7 +160,8 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
146; * 160; *
147[GridService] 161[GridService]
148 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 162 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
149 HypergridLinker = true 163
164 HypergridLinker = true
150 165
151 ; Realm = "regions" 166 ; Realm = "regions"
152 ; AllowDuplicateNames = "True" 167 ; AllowDuplicateNames = "True"
@@ -163,16 +178,31 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
163 ;; Next, we can specify properties of regions, including default and fallback regions 178 ;; Next, we can specify properties of regions, including default and fallback regions
164 ;; The syntax is: Region_<RegionName> = "<flags>" 179 ;; The syntax is: Region_<RegionName> = "<flags>"
165 ;; or: Region_<RegionID> = "<flags>" 180 ;; or: Region_<RegionID> = "<flags>"
166 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate 181 ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
167 ;; For example: 182 ;;
183 ;; 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.)
184 ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
185 ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
186 ;; an explicit region.
187 ;;
188 ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
189 ;; region will be used.
190 ;;
191 ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
192 ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
193 ;;
194 ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
195 ;;
196 ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
197 ;;
168 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" 198 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
169 ; (replace spaces with underscore) 199 ; (replace spaces with underscore)
170 200
171 ;; Allow Hyperlinks to be created at the console 201 ;; Allow Hyperlinks to be created at the console
172 HypergridLinker = true 202 HypergridLinker = true
173 203
174 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented 204 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
175 ; GatekeeperURI = "http://127.0.0.1:8002" 205 ; GatekeeperURI = "http://127.0.0.1:8002"
176 206
177 207
178; * This is the configuration for the freeswitch server in grid mode 208; * This is the configuration for the freeswitch server in grid mode
@@ -306,6 +336,9 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
306 ;; Ask co-operative viewers to use a different currency name 336 ;; Ask co-operative viewers to use a different currency name
307 ;Currency = "" 337 ;Currency = ""
308 338
339 ;; Set minimum fee to publish classified
340 ; ClassifiedFee = 0
341
309 WelcomeMessage = "Welcome, Avatar!" 342 WelcomeMessage = "Welcome, Avatar!"
310 AllowRemoteSetLoginLevel = "false" 343 AllowRemoteSetLoginLevel = "false"
311 344
@@ -322,6 +355,12 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
322 ; For V2/V3 webapp authentication SSO 355 ; For V2/V3 webapp authentication SSO
323 ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/" 356 ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
324 357
358 ; For V3 destination guide
359 ; DestinationGuide = "http://127.0.0.1/guide"
360
361 ; For V3 avatar picker (( work in progress ))
362 ; AvatarPicker = "http://127.0.0.1/avatars"
363
325 ; If you run this login server behind a proxy, set this to true 364 ; If you run this login server behind a proxy, set this to true
326 ; HasProxy = false 365 ; HasProxy = false
327 366
@@ -586,4 +625,12 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
586 ;; Can overwrite the default in [Hypergrid], but probably shouldn't 625 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
587 ; HomeURI = "http://127.0.0.1:8002" 626 ; HomeURI = "http://127.0.0.1:8002"
588 627
628[UserProfilesService]
629 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
630 Enabled = false
631 ;; Configure this for separate profiles database
632 ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
633 ;; Realm = UserProfiles
634 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
635 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
589 636