aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.Server.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.Server.ini.example')
-rw-r--r--bin/OpenSim.Server.ini.example121
1 files changed, 87 insertions, 34 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index d4e05af..3d2a5ba 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -1,21 +1,22 @@
1; * The startup section lists all the connectors to start up in this server 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. 2; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas. 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.
4; * 7; *
5; * These are the IN connectors the server uses, the in connectors 8; * These are the IN connectors the server uses, the in connectors
6; * read this config file and load the needed OUT and database connectors 9; * read this config file and load the needed service and database connectors
7; * 10; *
8; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to
9; * enable the experimental authentication service
10; * 11; *
11[Startup] 12[Startup]
12ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" 13ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector,,OpenSim.Server.Handlers.dll:GridInfoServerInConnector,OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,OpenSim.Server.Handlers.dll:OpenIdServerConnector,OpenSim.Server.Handlers.dll:AvatarServiceConnector,OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,OpenSim.Server.Handlers.dll:PresenceServiceConnector,,OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
13 14
14; * This is common for all services, it's the network setup for the entire 15; * This is common for all services, it's the network setup for the entire
15; * server instance 16; * server instance
16; * 17; *
17[Network] 18[Network]
18port = 8003 19 port = 8003
19 20
20; * The following are for the remote console 21; * The following are for the remote console
21; * They have no effect for the local or basic console types 22; * They have no effect for the local or basic console types
@@ -30,25 +31,41 @@ port = 8003
30; * in turn, reads the asset loader and database connection information 31; * in turn, reads the asset loader and database connection information
31; * 32; *
32[AssetService] 33[AssetService]
33LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 34 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
34DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 35 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
35AssetLoaderArgs = "assets/AssetSets.xml" 36 AssetLoaderArgs = "assets/AssetSets.xml"
36StorageProvider = "OpenSim.Data.MySQL.dll" 37 StorageProvider = "OpenSim.Data.MySQL.dll"
37ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 38 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
38 39
39; * This configuration loads the inventory server modules. It duplicates 40; * This configuration loads the inventory server modules. It duplicates
40; * the function of the legacy inventory server 41; * the function of the legacy inventory server
41; * 42; *
42[InventoryService] 43[InventoryService]
43LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 44 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
44UserServerURI = "http://127.0.0.1:8002" 45 UserServerURI = "http://127.0.0.1:8002"
45SessionAuthentication = "false" 46 SessionAuthentication = "false"
46StorageProvider = "OpenSim.Data.MySQL.dll" 47 StorageProvider = "OpenSim.Data.MySQL.dll"
47ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 48 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
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 StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
57 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
58 Realm = "regions"
59 ; AllowDuplicateNames = "True"
60 ;; Next, we can specify properties of regions, including default and fallback regions
61 ;; The syntax is: Region_<RegioName> = "<flags>"
62 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
63 ;; For example:
64 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
48 65
49; * This is the configuration for the freeswitch server in grid mode 66; * This is the configuration for the freeswitch server in grid mode
50[FreeswitchService] 67[FreeswitchService]
51LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 68 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
52 69
53; * This is the new style authentication service. Currently, only MySQL 70; * This is the new style authentication service. Currently, only MySQL
54; * is implemented. "Realm" is the table that is used for user lookup. 71; * is implemented. "Realm" is the table that is used for user lookup.
@@ -56,28 +73,64 @@ LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
56; * as an authentication source. 73; * as an authentication source.
57; * 74; *
58[AuthenticationService] 75[AuthenticationService]
59AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 76 ; for the server connector
60StorageProvider = "OpenSim.Data.MySQL.dll" 77 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
61ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 78 ; for the service
62; Realm = "users" 79 StorageProvider = "OpenSim.Data.MySQL.dll"
80 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
63 81
82[OpenIdService]
83 ; for the server connector
84 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
85 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
86
64; * This is the new style user service. 87; * This is the new style user service.
65; * "Realm" is the table that is used for user lookup. 88; * "Realm" is the table that is used for user lookup.
66; * It defaults to "users", which uses the legacy tables 89; * It defaults to "users", which uses the legacy tables
67; * 90; *
68[UserAccountService] 91[UserAccountService]
69AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" 92 ; for the server connector
70StorageProvider = "OpenSim.Data.MySQL.dll" 93 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
71ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 94 ; for the service
72; Realm = "users" 95 StorageProvider = "OpenSim.Data.MySQL.dll"
96 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
97 ; Realm = "useraccounts"
98 ;; These are for creating new accounts by the service
99 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
100 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
101 GridService = "OpenSim.Services.GridService.dll:GridService"
102 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
73 103
74; * This is the new style grid service. 104[PresenceService]
75; * "Realm" is the table that is used for user lookup. 105 ; for the server connector
76; * It defaults to "regions", which uses the legacy tables 106 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
77; * 107 ; for the service
78[GridService] 108 StorageProvider = "OpenSim.Data.MySQL.dll"
79LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 109 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
80StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" 110
81ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" 111[AvatarService]
82Realm = "regions" 112 ; for the server connector
83; AllowDuplicateNames = "True" 113 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
114 ; for the service
115 StorageProvider = "OpenSim.Data.MySQL.dll"
116 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
117
118[LibraryService]
119 LibraryName = "OpenSim Library"
120 DefaultLibrary = "./inventory/Libraries.xml"
121
122[LoginService]
123 ; for the server connector
124 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
125 ; for the service
126 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
127 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
128 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
129 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
130 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
131 GridService = "OpenSim.Services.GridService.dll:GridService"
132 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
133 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
134
135 DefaultRegion = "OpenSim Test"
136 WelcomeMessage = "Welcome, Avatar!"