diff options
Diffstat (limited to 'bin/Robust.HG.ini.example')
-rw-r--r-- | bin/Robust.HG.ini.example | 209 |
1 files changed, 209 insertions, 0 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example new file mode 100644 index 0000000..5e3f9a7 --- /dev/null +++ b/bin/Robust.HG.ini.example | |||
@@ -0,0 +1,209 @@ | |||
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] | ||
14 | ServiceConnectors = "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 | [GridInfoService] | ||
137 | ; These settings are used to return information on a get_grid_info call. | ||
138 | ; Client launcher scripts and third-party clients make use of this to | ||
139 | ; autoconfigure the client and to provide a nice user experience. If you | ||
140 | ; want to facilitate that, you should configure the settings here according | ||
141 | ; to your grid or standalone setup. | ||
142 | ; | ||
143 | ; See http://opensimulator.org/wiki/GridInfo | ||
144 | |||
145 | ; login uri: for grid this is the login server URI | ||
146 | login = http://127.0.0.1:9000/ | ||
147 | |||
148 | ; long grid name: the long name of your grid | ||
149 | gridname = "the lost continent of hippo" | ||
150 | |||
151 | ; short grid name: the short name of your grid | ||
152 | gridnick = "hippogrid" | ||
153 | |||
154 | ; login page: optional: if it exists it will be used to tell the client to use | ||
155 | ; this as splash page | ||
156 | ; currently unused | ||
157 | ;welcome = http://127.0.0.1/welcome | ||
158 | |||
159 | ; helper uri: optional: if it exists if will be used to tell the client to use | ||
160 | ; this for all economy related things | ||
161 | ; currently unused | ||
162 | ;economy = http://127.0.0.1:9000/ | ||
163 | |||
164 | ; web page of grid: optional: page providing further information about your grid | ||
165 | ; currently unused | ||
166 | ;about = http://127.0.0.1/about/ | ||
167 | |||
168 | ; account creation: optional: page providing further information about obtaining | ||
169 | ; a user account on your grid | ||
170 | ; currently unused | ||
171 | ;register = http://127.0.0.1/register | ||
172 | |||
173 | ; help: optional: page providing further assistance for users of your grid | ||
174 | ; currently unused | ||
175 | ;help = http://127.0.0.1/help | ||
176 | |||
177 | ; password help: optional: page providing password assistance for users of your grid | ||
178 | ; currently unused | ||
179 | ;password = http://127.0.0.1/password | ||
180 | |||
181 | |||
182 | [GatekeeperService] | ||
183 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" | ||
184 | ;; for the service | ||
185 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
186 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
187 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
188 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
189 | AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" | ||
190 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" | ||
191 | ; how does the outside world reach me? This acts as public key too. | ||
192 | ; CHANGE THIS | ||
193 | ExternalName = "http://127.0.0.1:8002" | ||
194 | |||
195 | [UserAgentService] | ||
196 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
197 | ;; for the service | ||
198 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
199 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
200 | |||
201 | ;; The interface that local users get when they are in other grids. | ||
202 | ;; This restricts the inventory operations while in other grids. | ||
203 | ;; Still not completely safe, especially if users perform inventory operations | ||
204 | ;; while in those grids. The more the user accesses his/her inventory, the more | ||
205 | ;; those simulators will know about the user's inventory. | ||
206 | [HGInventoryService] | ||
207 | ; For the InventoryServiceInConnector | ||
208 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService" | ||
209 | |||