mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
This commit changes the way the new server works. There is no longer a server
exe for each function, rather each function is a connector and the server ini loads them. If you like your multiple processes, use -inifile with the server. Otherwise, you get one server process that serves all configured funcions, see example .ini. The new exe is OpenSim.Server.exe. Clean your bin, loads of names have changed!
This commit is contained in:
19
bin/OpenSim.Server.ini.example
Normal file
19
bin/OpenSim.Server.ini.example
Normal file
@@ -0,0 +1,19 @@
|
||||
[Startup]
|
||||
; These are also available as command line options
|
||||
|
||||
; console = "local" ; Use "basic" to use this on a pipe
|
||||
; inifile = "OpenSim.Servers.AssetServer.ini"
|
||||
; logfile = "AssetServer.log" ; Also read from application config file
|
||||
|
||||
; Connectors, comma separated
|
||||
ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector"
|
||||
|
||||
[Network]
|
||||
port = 8003
|
||||
|
||||
[AssetService]
|
||||
LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
|
||||
StorageProvider = "OpenSim.Data.MySQL.dll"
|
||||
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim;"
|
||||
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
|
||||
AssetLoaderArgs = "assets/AssetSets.xml"
|
||||
Reference in New Issue
Block a user