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.example208
1 files changed, 208 insertions, 0 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
new file mode 100644
index 0000000..489b66f
--- /dev/null
+++ b/bin/Robust.HG.ini.example
@@ -0,0 +1,208 @@
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:XInventoryServiceInConnector,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:XInventoryInConnector,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:XInventoryService"
48
49; * This is the new style grid service.
50; * "Realm" is the table that is used for user lookup.
51; * It defaults to "regions", which uses the legacy tables
52; *
53[GridService]
54 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
55 Realm = "regions"
56 ; AllowDuplicateNames = "True"
57 ;; Next, we can specify properties of regions, including default and fallback regions
58 ;; The syntax is: Region_<RegionName> = "<flags>"
59 ;; or: Region_<RegionID> = "<flags>"
60 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
61 ;; For example:
62 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
63 ; (replace spaces with underscore)
64
65; * This is the configuration for the freeswitch server in grid mode
66[FreeswitchService]
67 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
68
69; * This is the new style authentication service. Currently, only MySQL
70; * is implemented. "Realm" is the table that is used for user lookup.
71; * By setting it to "users", you can use the old style users table
72; * as an authentication source.
73; *
74[AuthenticationService]
75 ; for the server connector
76 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
77
78[OpenIdService]
79 ; for the server connector
80 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
81 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
82
83; * This is the new style user service.
84; * "Realm" is the table that is used for user lookup.
85; * It defaults to "users", which uses the legacy tables
86; *
87[UserAccountService]
88 ; for the server connector
89 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
90 ;; These are for creating new accounts by the service
91 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
92 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
93 GridService = "OpenSim.Services.GridService.dll:GridService"
94 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
95
96[PresenceService]
97 ; for the server connector
98 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
99
100[AvatarService]
101 ; for the server connector
102 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
103
104[FriendsService]
105 ; for the server connector
106 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
107
108[LibraryService]
109 LibraryName = "OpenSim Library"
110 DefaultLibrary = "./inventory/Libraries.xml"
111
112[LoginService]
113 ; for the server connector
114 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
115 ; for the service
116 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
117 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
118 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
119 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
120 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
121 GridService = "OpenSim.Services.GridService.dll:GridService"
122 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
123 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
124 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
125 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
126
127 WelcomeMessage = "Welcome, Avatar!"
128 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
129 ; CHANGE THIS
130 HomeURI = "http://127.0.0.1:8002"
131 GatekeeperURI = "http://127.0.0.1:8002"
132 InventoryServerURI = "http://127.0.0.1:8002"
133 AssetServerURI = "http://127.0.0.1:8002"
134
135[GridInfoService]
136 ; These settings are used to return information on a get_grid_info call.
137 ; Client launcher scripts and third-party clients make use of this to
138 ; autoconfigure the client and to provide a nice user experience. If you
139 ; want to facilitate that, you should configure the settings here according
140 ; to your grid or standalone setup.
141 ;
142 ; See http://opensimulator.org/wiki/GridInfo
143
144 ; login uri: for grid this is the login server URI
145 login = http://127.0.0.1:9000/
146
147 ; long grid name: the long name of your grid
148 gridname = "the lost continent of hippo"
149
150 ; short grid name: the short name of your grid
151 gridnick = "hippogrid"
152
153 ; login page: optional: if it exists it will be used to tell the client to use
154 ; this as splash page
155 ; currently unused
156 ;welcome = http://127.0.0.1/welcome
157
158 ; helper uri: optional: if it exists if will be used to tell the client to use
159 ; this for all economy related things
160 ; currently unused
161 ;economy = http://127.0.0.1:9000/
162
163 ; web page of grid: optional: page providing further information about your grid
164 ; currently unused
165 ;about = http://127.0.0.1/about/
166
167 ; account creation: optional: page providing further information about obtaining
168 ; a user account on your grid
169 ; currently unused
170 ;register = http://127.0.0.1/register
171
172 ; help: optional: page providing further assistance for users of your grid
173 ; currently unused
174 ;help = http://127.0.0.1/help
175
176 ; password help: optional: page providing password assistance for users of your grid
177 ; currently unused
178 ;password = http://127.0.0.1/password
179
180
181[GatekeeperService]
182 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
183 ;; for the service
184 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
185 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
186 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
187 GridService = "OpenSim.Services.GridService.dll:GridService"
188 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
189 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
190 ; how does the outside world reach me? This acts as public key too.
191 ; CHANGE THIS
192 ExternalName = "http://127.0.0.1:8002"
193
194[UserAgentService]
195 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
196 ;; for the service
197 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
198 GridService = "OpenSim.Services.GridService.dll:GridService"
199
200;; The interface that local users get when they are in other grids.
201;; This restricts the inventory operations while in other grids.
202;; Still not completely safe, especially if users perform inventory operations
203;; while in those grids. The more the user accesses his/her inventory, the more
204;; those simulators will know about the user's inventory.
205[HGInventoryService]
206 ; For the InventoryServiceInConnector
207 LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"
208