diff options
Diffstat (limited to 'bin/OpenSim.Server.ini.example')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 119 |
1 files changed, 81 insertions, 38 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index 372923b..e822e83 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -1,21 +1,23 @@ | |||
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] |
12 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" | 13 | |
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,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" | ||
13 | 15 | ||
14 | ; * This is common for all services, it's the network setup for the entire | 16 | ; * This is common for all services, it's the network setup for the entire |
15 | ; * server instance | 17 | ; * server instance, if none if specified above |
16 | ; * | 18 | ; * |
17 | [Network] | 19 | [Network] |
18 | port = 8003 | 20 | port = 8003 |
19 | 21 | ||
20 | ; * The following are for the remote console | 22 | ; * The following are for the remote console |
21 | ; * They have no effect for the local or basic console types | 23 | ; * They have no effect for the local or basic console types |
@@ -24,31 +26,47 @@ port = 8003 | |||
24 | ;ConsolePass = secret | 26 | ;ConsolePass = secret |
25 | ;ConsolePort = 0 | 27 | ;ConsolePort = 0 |
26 | 28 | ||
29 | [DatabaseService] | ||
30 | StorageProvider = "OpenSim.Data.MySQL.dll" | ||
31 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" | ||
32 | |||
33 | |||
27 | ; * As an example, the below configuration precisely mimicks the legacy | 34 | ; * As an example, the below configuration precisely mimicks the legacy |
28 | ; * asset server. It is read by the asset IN connector (defined above) | 35 | ; * asset server. It is read by the asset IN connector (defined above) |
29 | ; * and it then loads the OUT connector (a local database module). That, | 36 | ; * and it then loads the OUT connector (a local database module). That, |
30 | ; * in turn, reads the asset loader and database connection information | 37 | ; * in turn, reads the asset loader and database connection information |
31 | ; * | 38 | ; * |
32 | [AssetService] | 39 | [AssetService] |
33 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 40 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
34 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | 41 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" |
35 | AssetLoaderArgs = "assets/AssetSets.xml" | 42 | AssetLoaderArgs = "assets/AssetSets.xml" |
36 | StorageProvider = "OpenSim.Data.MySQL.dll" | ||
37 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | ||
38 | 43 | ||
39 | ; * This configuration loads the inventory server modules. It duplicates | 44 | ; * This configuration loads the inventory server modules. It duplicates |
40 | ; * the function of the legacy inventory server | 45 | ; * the function of the legacy inventory server |
41 | ; * | 46 | ; * |
42 | [InventoryService] | 47 | [InventoryService] |
43 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 48 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
44 | UserServerURI = "http://127.0.0.1:8002" | 49 | SessionAuthentication = "false" |
45 | SessionAuthentication = "false" | 50 | |
46 | StorageProvider = "OpenSim.Data.MySQL.dll" | 51 | ; * This is the new style grid service. |
47 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | 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) | ||
48 | 66 | ||
49 | ; * This is the configuration for the freeswitch server in grid mode | 67 | ; * This is the configuration for the freeswitch server in grid mode |
50 | [FreeswitchService] | 68 | [FreeswitchService] |
51 | LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" | 69 | LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" |
52 | 70 | ||
53 | ; * This is the new style authentication service. Currently, only MySQL | 71 | ; * This is the new style authentication service. Currently, only MySQL |
54 | ; * is implemented. "Realm" is the table that is used for user lookup. | 72 | ; * is implemented. "Realm" is the table that is used for user lookup. |
@@ -56,31 +74,56 @@ LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" | |||
56 | ; * as an authentication source. | 74 | ; * as an authentication source. |
57 | ; * | 75 | ; * |
58 | [AuthenticationService] | 76 | [AuthenticationService] |
59 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | 77 | ; for the server connector |
60 | StorageProvider = "OpenSim.Data.MySQL.dll" | 78 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
61 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | ||
62 | ; Realm = "users" | ||
63 | 79 | ||
80 | [OpenIdService] | ||
81 | ; for the server connector | ||
82 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
83 | UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
84 | |||
64 | ; * This is the new style user service. | 85 | ; * This is the new style user service. |
65 | ; * "Realm" is the table that is used for user lookup. | 86 | ; * "Realm" is the table that is used for user lookup. |
66 | ; * It defaults to "users", which uses the legacy tables | 87 | ; * It defaults to "users", which uses the legacy tables |
67 | ; * | 88 | ; * |
68 | [UserAccountService] | 89 | [UserAccountService] |
69 | AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" | 90 | ; for the server connector |
70 | StorageProvider = "OpenSim.Data.MySQL.dll" | 91 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
71 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | 92 | ; Realm = "useraccounts" |
72 | ; Realm = "users" | 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" | ||
73 | 98 | ||
74 | ; * This is the new style grid service. | 99 | [PresenceService] |
75 | ; * "Realm" is the table that is used for user lookup. | 100 | ; for the server connector |
76 | ; * It defaults to "regions", which uses the legacy tables | 101 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" |
77 | ; * | 102 | |
78 | [GridService] | 103 | [AvatarService] |
79 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 104 | ; for the server connector |
80 | StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" | 105 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" |
81 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" | 106 | |
82 | Realm = "regions" | 107 | [FriendsService] |
83 | 108 | ; for the server connector | |
84 | ; If true, duplicate region names are allowed on the grid. If false, no duplicate names are allowed | 109 | LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService" |
85 | ; Default is false | 110 | |
86 | ; AllowDuplicateNames = "True" | 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!" | ||