aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Robust.ini.example')
-rw-r--r--bin/Robust.ini.example174
1 files changed, 174 insertions, 0 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
new file mode 100644
index 0000000..cfc08bc
--- /dev/null
+++ b/bin/Robust.ini.example
@@ -0,0 +1,174 @@
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: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[PresenceService]
99 ; for the server connector
100 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
101
102[AvatarService]
103 ; for the server connector
104 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
105
106[FriendsService]
107 ; for the server connector
108 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
109
110[LibraryService]
111 LibraryName = "OpenSim Library"
112 DefaultLibrary = "./inventory/Libraries.xml"
113
114[LoginService]
115 ; for the server connector
116 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
117 ; for the service
118 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
119 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
120 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
121 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
122 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
123 GridService = "OpenSim.Services.GridService.dll:GridService"
124 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
125 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
126 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
127
128 WelcomeMessage = "Welcome, Avatar!"
129
130
131[GridInfoService]
132 ; These settings are used to return information on a get_grid_info call.
133 ; Client launcher scripts and third-party clients make use of this to
134 ; autoconfigure the client and to provide a nice user experience. If you
135 ; want to facilitate that, you should configure the settings here according
136 ; to your grid or standalone setup.
137 ;
138 ; See http://opensimulator.org/wiki/GridInfo
139
140 ; login uri: for grid this is the login server URI
141 login = http://127.0.0.1:9000/
142
143 ; long grid name: the long name of your grid
144 gridname = "the lost continent of hippo"
145
146 ; short grid name: the short name of your grid
147 gridnick = "hippogrid"
148
149 ; login page: optional: if it exists it will be used to tell the client to use
150 ; this as splash page
151 ; currently unused
152 ;welcome = http://127.0.0.1/welcome
153
154 ; helper uri: optional: if it exists if will be used to tell the client to use
155 ; this for all economy related things
156 ; currently unused
157 ;economy = http://127.0.0.1:9000/
158
159 ; web page of grid: optional: page providing further information about your grid
160 ; currently unused
161 ;about = http://127.0.0.1/about/
162
163 ; account creation: optional: page providing further information about obtaining
164 ; a user account on your grid
165 ; currently unused
166 ;register = http://127.0.0.1/register
167
168 ; help: optional: page providing further assistance for users of your grid
169 ; currently unused
170 ;help = http://127.0.0.1/help
171
172 ; password help: optional: page providing password assistance for users of your grid
173 ; currently unused
174 ;password = http://127.0.0.1/password