aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.ini.example
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/Robust.ini.example180
1 files changed, 180 insertions, 0 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
new file mode 100644
index 0000000..502a8e6
--- /dev/null
+++ b/bin/Robust.ini.example
@@ -0,0 +1,180 @@
1; * The startup section lists all the connectors to start up in this server
2; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas.
4; * The startup section lists all the connectors to start up in this server
5; * instance. This may be only one, or it may be the entire server suite.
6; * Multiple connectors should be seaprated by commas.
7; *
8; * These are the IN connectors the server uses, the in connectors
9; * read this config file and load the needed service and database connectors
10; *
11; *
12[Startup]
13
14ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/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:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
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
34; * As an example, the below configuration precisely mimicks the legacy
35; * asset server. It is read by the asset IN connector (defined above)
36; * and it then loads the OUT connector (a local database module). That,
37; * in turn, reads the asset loader and database connection information
38; *
39[AssetService]
40 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
41 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
42 AssetLoaderArgs = "assets/AssetSets.xml"
43
44; * This configuration loads the inventory server modules. It duplicates
45; * the function of the legacy inventory server
46; *
47[InventoryService]
48 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
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 ; Realm = "useraccounts"
92 ;; These are for creating new accounts by the service
93 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
94 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
95 GridService = "OpenSim.Services.GridService.dll:GridService"
96 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
97
98[GridUserService]
99 ; for the server connector
100 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
101
102[PresenceService]
103 ; for the server connector
104 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
105
106[AvatarService]
107 ; for the server connector
108 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
109
110[FriendsService]
111 ; for the server connector
112 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
113
114[LibraryService]
115 LibraryName = "OpenSim Library"
116 DefaultLibrary = "./inventory/Libraries.xml"
117
118[LoginService]
119 ; for the server connector
120 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
121 ; for the service
122 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
123 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
124 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
125 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
126 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
127 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
128 GridService = "OpenSim.Services.GridService.dll:GridService"
129 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
130 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
131 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
132
133 WelcomeMessage = "Welcome, Avatar!"
134 AllowRemoteSetLoginLevel = "false"
135
136
137[GridInfoService]
138 ; These settings are used to return information on a get_grid_info call.
139 ; Client launcher scripts and third-party clients make use of this to
140 ; autoconfigure the client and to provide a nice user experience. If you
141 ; want to facilitate that, you should configure the settings here according
142 ; to your grid or standalone setup.
143 ;
144 ; See http://opensimulator.org/wiki/GridInfo
145
146 ; login uri: for grid this is the login server URI
147 login = http://127.0.0.1:9000/
148
149 ; long grid name: the long name of your grid
150 gridname = "the lost continent of hippo"
151
152 ; short grid name: the short name of your grid
153 gridnick = "hippogrid"
154
155 ; login page: optional: if it exists it will be used to tell the client to use
156 ; this as splash page
157 ; currently unused
158 ;welcome = http://127.0.0.1/welcome
159
160 ; helper uri: optional: if it exists if will be used to tell the client to use
161 ; this for all economy related things
162 ; currently unused
163 ;economy = http://127.0.0.1:9000/
164
165 ; web page of grid: optional: page providing further information about your grid
166 ; currently unused
167 ;about = http://127.0.0.1/about/
168
169 ; account creation: optional: page providing further information about obtaining
170 ; a user account on your grid
171 ; currently unused
172 ;register = http://127.0.0.1/register
173
174 ; help: optional: page providing further assistance for users of your grid
175 ; currently unused
176 ;help = http://127.0.0.1/help
177
178 ; password help: optional: page providing password assistance for users of your grid
179 ; currently unused
180 ;password = http://127.0.0.1/password