aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.Server.HG.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.Server.HG.ini.example')
-rw-r--r--bin/OpenSim.Server.HG.ini.example162
1 files changed, 162 insertions, 0 deletions
diff --git a/bin/OpenSim.Server.HG.ini.example b/bin/OpenSim.Server.HG.ini.example
new file mode 100644
index 0000000..97c2e06
--- /dev/null
+++ b/bin/OpenSim.Server.HG.ini.example
@@ -0,0 +1,162 @@
1;; Configurations for enabling HG1.5
2;;
3;; Run
4;; $ OpenSim.Server.exe -inifile OpenSim.Server.HG.ini
5
6;; HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
7;; OpenSim.Server.Handlers.dll:UserAgentService
8;; OpenSim.Server.Handlers.dll:HGInventoryServiceInConnector
9;; An additional OpenSim.Server.Handlers.dll:AssetServiceConnector is started
10;; in port 8002, outside the firewall
11;;
12
13[Startup]
14ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:InventoryServiceInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8003/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:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:HGInventoryServiceInConnector,8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
15
16; * This is common for all services, it's the network setup for the entire
17; * server instance, if none if specified above
18; *
19[Network]
20 port = 8003
21
22; * The following are for the remote console
23; * They have no effect for the local or basic console types
24; * Leave commented to diable logins to the console
25;ConsoleUser = Test
26;ConsolePass = secret
27;ConsolePort = 0
28
29[DatabaseService]
30 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
32
33; * As an example, the below configuration precisely mimicks the legacy
34; * asset server. It is read by the asset IN connector (defined above)
35; * and it then loads the OUT connector (a local database module). That,
36; * in turn, reads the asset loader and database connection information
37; *
38[AssetService]
39 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
40 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
41 AssetLoaderArgs = "assets/AssetSets.xml"
42
43; * This configuration loads the inventory server modules. It duplicates
44; * the function of the legacy inventory server
45; *
46[InventoryService]
47 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
48 SessionAuthentication = "false"
49
50; * This is the new style grid service.
51; * "Realm" is the table that is used for user lookup.
52; * It defaults to "regions", which uses the legacy tables
53; *
54[GridService]
55 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
56 Realm = "regions"
57 ; AllowDuplicateNames = "True"
58 ;; Next, we can specify properties of regions, including default and fallback regions
59 ;; The syntax is: Region_<RegionName> = "<flags>"
60 ;; or: Region_<RegionID> = "<flags>"
61 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
62 ;; For example:
63 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
64 ; (replace spaces with underscore)
65
66; * This is the configuration for the freeswitch server in grid mode
67[FreeswitchService]
68 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
69
70; * This is the new style authentication service. Currently, only MySQL
71; * is implemented. "Realm" is the table that is used for user lookup.
72; * By setting it to "users", you can use the old style users table
73; * as an authentication source.
74; *
75[AuthenticationService]
76 ; for the server connector
77 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
78
79[OpenIdService]
80 ; for the server connector
81 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
82 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
83
84; * This is the new style user service.
85; * "Realm" is the table that is used for user lookup.
86; * It defaults to "users", which uses the legacy tables
87; *
88[UserAccountService]
89 ; for the server connector
90 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
91 ;; These are for creating new accounts by the service
92 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
93 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
94 GridService = "OpenSim.Services.GridService.dll:GridService"
95 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
96
97[PresenceService]
98 ; for the server connector
99 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
100
101[AvatarService]
102 ; for the server connector
103 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
104
105[FriendsService]
106 ; for the server connector
107 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
108
109[LibraryService]
110 LibraryName = "OpenSim Library"
111 DefaultLibrary = "./inventory/Libraries.xml"
112
113[LoginService]
114 ; for the server connector
115 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
116 ; for the service
117 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
118 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
119 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
120 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
121 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
122 GridService = "OpenSim.Services.GridService.dll:GridService"
123 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
124 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
125 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
126 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
127
128 WelcomeMessage = "Welcome, Avatar!"
129 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
130 ; CHANGE THIS
131 HomeURI = "http://127.0.0.1:8002"
132 GatekeeperURI = "http://127.0.0.1:8002"
133 InventoryServerURI = "http://127.0.0.1:8002"
134 AssetServerURI = "http://127.0.0.1:8002"
135
136[GatekeeperService]
137 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
138 ;; for the service
139 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
140 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
141 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
142 GridService = "OpenSim.Services.GridService.dll:GridService"
143 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
144 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
145 ; how does the outside world reach me? This acts as public key too.
146 ; CHANGE THIS
147 ExternalName = "http://127.0.0.1:8002"
148
149[UserAgentService]
150 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
151 ;; for the service
152 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
153 GridService = "OpenSim.Services.GridService.dll:GridService"
154
155;; The interface that local users get when they are in other grids.
156;; This restricts the inventory operations while in other grids.
157;; Still not completely safe, especially if users perform inventory operations
158;; while in those grids. The more the user accesses his/her inventory, the more
159;; those simulators will know about the user's inventory.
160[HGInventoryService]
161 ; For the InventoryServiceInConnector
162 LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"