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.example86
1 files changed, 0 insertions, 86 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
deleted file mode 100644
index 372923b..0000000
--- a/bin/OpenSim.Server.ini.example
+++ /dev/null
@@ -1,86 +0,0 @@
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; *
5; * These are the IN connectors the server uses, the in connectors
6; * read this config file and load the needed OUT and database connectors
7; *
8; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to
9; * enable the experimental authentication service
10; *
11[Startup]
12ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector"
13
14; * This is common for all services, it's the network setup for the entire
15; * server instance
16; *
17[Network]
18port = 8003
19
20; * The following are for the remote console
21; * They have no effect for the local or basic console types
22; * Leave commented to diable logins to the console
23;ConsoleUser = Test
24;ConsolePass = secret
25;ConsolePort = 0
26
27; * As an example, the below configuration precisely mimicks the legacy
28; * 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,
30; * in turn, reads the asset loader and database connection information
31; *
32[AssetService]
33LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
34DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
35AssetLoaderArgs = "assets/AssetSets.xml"
36StorageProvider = "OpenSim.Data.MySQL.dll"
37ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
38
39; * This configuration loads the inventory server modules. It duplicates
40; * the function of the legacy inventory server
41; *
42[InventoryService]
43LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
44UserServerURI = "http://127.0.0.1:8002"
45SessionAuthentication = "false"
46StorageProvider = "OpenSim.Data.MySQL.dll"
47ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
48
49; * This is the configuration for the freeswitch server in grid mode
50[FreeswitchService]
51LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
52
53; * This is the new style authentication service. Currently, only MySQL
54; * is implemented. "Realm" is the table that is used for user lookup.
55; * By setting it to "users", you can use the old style users table
56; * as an authentication source.
57; *
58[AuthenticationService]
59AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
60StorageProvider = "OpenSim.Data.MySQL.dll"
61ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
62; Realm = "users"
63
64; * This is the new style user service.
65; * "Realm" is the table that is used for user lookup.
66; * It defaults to "users", which uses the legacy tables
67; *
68[UserAccountService]
69AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService"
70StorageProvider = "OpenSim.Data.MySQL.dll"
71ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
72; Realm = "users"
73
74; * This is the new style grid service.
75; * "Realm" is the table that is used for user lookup.
76; * It defaults to "regions", which uses the legacy tables
77; *
78[GridService]
79LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
80StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
81ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;"
82Realm = "regions"
83
84; If true, duplicate region names are allowed on the grid. If false, no duplicate names are allowed
85; Default is false
86; AllowDuplicateNames = "True"