aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.ini
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Robust.ini')
-rw-r--r--bin/Robust.ini56
1 files changed, 46 insertions, 10 deletions
diff --git a/bin/Robust.ini b/bin/Robust.ini
index 6141af1..9c54de7 100644
--- a/bin/Robust.ini
+++ b/bin/Robust.ini
@@ -1,9 +1,34 @@
1; * Run
2; * $ Robust.exe -inifile Robust.HG.ini
3; *
4
5; * Configurations for enabling HG1.5
6; *
7; * HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
8; * OpenSim.Server.Handlers.dll:UserAgentService
9; * Additional OpenSim.Server.Handlers.dll:AssetServiceConnector and
10; * OpenSim.Server.Handlers.dll:XInventoryInConnector
11; * are started in port 8002, outside the firewall
12; *
13; **
14; *
15; * The Const section allows us to define some basic information that we
16; * will use throughout our configuration. We will provide examples for
17; * setting the base url of the Robust server and the public and private ports
18; * it uses. Changing the values of the constants will set the operating
19; * parameters thoughout the configuration. Other constants that may prove
20; * to be useful may be added to the followin section. They may be
21; * referenced anywhere in the configuration by using ${Const|Name}. One
22; * such use is providing a base path for setting locations that Robust
23; * uses to write data.
24; *
1 25
2[Includes] 26[Includes]
3 ; Define your server specific constants in this file. 27 ; Define your server specific constants in this file.
4 Include-Common = ../../config/config.ini 28 Include-Common = ../../config/config.ini
5 29
6 30
31
7; * The startup section lists all the connectors to start up in this server 32; * The startup section lists all the connectors to start up in this server
8; * instance. This may be only one, or it may be the entire server suite. 33; * instance. This may be only one, or it may be the entire server suite.
9; * Multiple connectors should be separated by commas. 34; * Multiple connectors should be separated by commas.
@@ -17,13 +42,13 @@
17[Startup] 42[Startup]
18 ; Place to create a PID file 43 ; Place to create a PID file
19 ; If no path if specified then a PID file is not created. 44 ; If no path if specified then a PID file is not created.
20 PIDFile = "${Paths|CachePath}/ROBUST.pid" 45 PIDFile = "${Paths|PIDPath}/ROBUST.pid"
21 46
22 ; Plugin Registry Location 47 ; Plugin Registry Location
23 ; Set path to directory for plugin registry. Information 48 ; Set path to directory for plugin registry. Information
24 ; about the registered repositories and installed plugins 49 ; about the registered repositories and installed plugins
25 ; will be stored here 50 ; will be stored here
26 ; The Robust.exe process must have R/W access to the location 51 ; The Robust.exe process must have R/W access to the location
27 RegistryLocation = "${Paths|CachePath}" 52 RegistryLocation = "${Paths|CachePath}"
28 53
29 ; Modular configurations 54 ; Modular configurations
@@ -41,6 +66,16 @@
41 ; How many lines of command history should we keep? (default is 100) 66 ; How many lines of command history should we keep? (default is 100)
42 ConsoleHistoryFileLines = 100 67 ConsoleHistoryFileLines = 100
43 68
69 ; Time stamp commands in history file (default false)
70 ; ConsoleHistoryTimeStamp = false
71
72 ; peers SSL certificate validation options
73 ; you can allow selfsigned certificates or no official CA with next option set to true
74 NoVerifyCertChain = true
75 ; you can also bypass the hostname or domain verification
76 NoVerifyCertHostname = true
77 ; having both options true does provide encryption but with low security
78 ; set both true if you don't care to use SSL, they are needed to contact regions or grids that do use it.
44 79
45[ServiceList] 80[ServiceList]
46 AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector" 81 AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
@@ -87,10 +122,6 @@
87 ;; Uncomment this if you want Groups V2, HG to work 122 ;; Uncomment this if you want Groups V2, HG to work
88 HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector" 123 HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector"
89 124
90 ;; Basic web server.
91 WebServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:WebServerConnector"
92
93
94; * This is common for all services, it's the network setup for the entire 125; * This is common for all services, it's the network setup for the entire
95; * server instance, if none is specified above 126; * server instance, if none is specified above
96; * 127; *
@@ -448,6 +479,7 @@
448 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" 479 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
449 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService" 480 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
450 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" 481 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
482
451 ; The minimum user level required for a user to be able to login. 0 by default 483 ; The minimum user level required for a user to be able to login. 0 by default
452 ; If you disable a particular user's account then you can set their login level below this number. 484 ; If you disable a particular user's account then you can set their login level below this number.
453 ; You can also change this level from the console though these changes will not be persisted. 485 ; You can also change this level from the console though these changes will not be persisted.
@@ -459,7 +491,7 @@
459 ; This inventory service will be used to initialize the user's inventory 491 ; This inventory service will be used to initialize the user's inventory
460 HGInventoryServicePlugin = "HGInventoryService@OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService" 492 HGInventoryServicePlugin = "HGInventoryService@OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
461 ; NOTE: HGInventoryServiceConstructorArg is deprecated. For now it will work, but see above 493 ; NOTE: HGInventoryServiceConstructorArg is deprecated. For now it will work, but see above
462 ; for the correct method if passing additional arguments. 494 ; for the correct method if passing additional arguments.
463 ;; end hypergrid 495 ;; end hypergrid
464 496
465 ; Ask co-operative viewers to use a different currency name 497 ; Ask co-operative viewers to use a different currency name
@@ -528,6 +560,8 @@
528 ;; 560 ;;
529 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0. 561 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
530 562
563 ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService]
564 ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC"
531 565
532[MapImageService] 566[MapImageService]
533 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" 567 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
@@ -623,6 +657,8 @@
623 ;; Leave blank or commented for no exceptions. 657 ;; Leave blank or commented for no exceptions.
624 ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002" 658 ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
625 659
660 ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService]
661 ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC"
626 662
627[UserAgentService] 663[UserAgentService]
628 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" 664 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
@@ -782,8 +818,8 @@
782 BaseDirectory = "${Paths|CachePath}/bakes" 818 BaseDirectory = "${Paths|CachePath}/bakes"
783 819
784[MuteListService] 820[MuteListService]
785 LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService" 821 LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"
786 822
787 823
788[WebService] 824;;[WebService]
789 Include-Common = ../../config/ROBUST/RobustExtra.ini 825;; Include-Common = ../../config/ROBUST/RobustExtra.ini