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.example175
1 files changed, 175 insertions, 0 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
new file mode 100644
index 0000000..9bedac6
--- /dev/null
+++ b/bin/Robust.ini.example
@@ -0,0 +1,175 @@
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:InventoryServiceInConnector,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:InventoryService"
49 SessionAuthentication = "false"
50
51; * This is the new style grid service.
52; * "Realm" is the table that is used for user lookup.
53; * It defaults to "regions", which uses the legacy tables
54; *
55[GridService]
56 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
57 Realm = "regions"
58 ; AllowDuplicateNames = "True"
59 ;; Next, we can specify properties of regions, including default and fallback regions
60 ;; The syntax is: Region_<RegionName> = "<flags>"
61 ;; or: Region_<RegionID> = "<flags>"
62 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
63 ;; For example:
64 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
65 ; (replace spaces with underscore)
66
67; * This is the configuration for the freeswitch server in grid mode
68[FreeswitchService]
69 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
70
71; * This is the new style authentication service. Currently, only MySQL
72; * is implemented. "Realm" is the table that is used for user lookup.
73; * By setting it to "users", you can use the old style users table
74; * as an authentication source.
75; *
76[AuthenticationService]
77 ; for the server connector
78 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
79
80[OpenIdService]
81 ; for the server connector
82 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
83 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
84
85; * This is the new style user service.
86; * "Realm" is the table that is used for user lookup.
87; * It defaults to "users", which uses the legacy tables
88; *
89[UserAccountService]
90 ; for the server connector
91 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
92 ; Realm = "useraccounts"
93 ;; These are for creating new accounts by the service
94 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
95 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
96 GridService = "OpenSim.Services.GridService.dll:GridService"
97 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
98
99[PresenceService]
100 ; for the server connector
101 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
102
103[AvatarService]
104 ; for the server connector
105 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
106
107[FriendsService]
108 ; for the server connector
109 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
110
111[LibraryService]
112 LibraryName = "OpenSim Library"
113 DefaultLibrary = "./inventory/Libraries.xml"
114
115[LoginService]
116 ; for the server connector
117 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
118 ; for the service
119 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
120 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
121 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
122 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
123 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
124 GridService = "OpenSim.Services.GridService.dll:GridService"
125 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
126 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
127 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
128
129 WelcomeMessage = "Welcome, Avatar!"
130
131
132[GridInfoService]
133 ; These settings are used to return information on a get_grid_info call.
134 ; Client launcher scripts and third-party clients make use of this to
135 ; autoconfigure the client and to provide a nice user experience. If you
136 ; want to facilitate that, you should configure the settings here according
137 ; to your grid or standalone setup.
138 ;
139 ; See http://opensimulator.org/wiki/GridInfo
140
141 ; login uri: for grid this is the login server URI
142 login = http://127.0.0.1:9000/
143
144 ; long grid name: the long name of your grid
145 gridname = "the lost continent of hippo"
146
147 ; short grid name: the short name of your grid
148 gridnick = "hippogrid"
149
150 ; login page: optional: if it exists it will be used to tell the client to use
151 ; this as splash page
152 ; currently unused
153 ;welcome = http://127.0.0.1/welcome
154
155 ; helper uri: optional: if it exists if will be used to tell the client to use
156 ; this for all economy related things
157 ; currently unused
158 ;economy = http://127.0.0.1:9000/
159
160 ; web page of grid: optional: page providing further information about your grid
161 ; currently unused
162 ;about = http://127.0.0.1/about/
163
164 ; account creation: optional: page providing further information about obtaining
165 ; a user account on your grid
166 ; currently unused
167 ;register = http://127.0.0.1/register
168
169 ; help: optional: page providing further assistance for users of your grid
170 ; currently unused
171 ;help = http://127.0.0.1/help
172
173 ; password help: optional: page providing password assistance for users of your grid
174 ; currently unused
175 ;password = http://127.0.0.1/password