From 5def40e4a4d7b5594917451292bb173b1f5d5db8 Mon Sep 17 00:00:00 2001 From: onefang Date: Sun, 19 May 2019 22:57:56 +1000 Subject: Some extra examples and performance .ini files. --- bin/config-include/config.ini.localhost_example | 52 +++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 bin/config-include/config.ini.localhost_example (limited to 'bin/config-include/config.ini.localhost_example') diff --git a/bin/config-include/config.ini.localhost_example b/bin/config-include/config.ini.localhost_example new file mode 100644 index 0000000..aa26abd --- /dev/null +++ b/bin/config-include/config.ini.localhost_example @@ -0,0 +1,52 @@ +; ** +; * The Const section allows us to define some basic information that we +; * will use throughout our configuration. We will provide examples for +; * setting the base url of the Robust server and the public and private ports +; * it uses. Changing the values of the constants will set the operating +; * parameters thoughout the configuration. Other constants that may prove +; * to be useful may be added to the followin section. They may be +; * referenced anywhere in the configuration by using ${Const|Name}. One +; * such use is providing a base path for setting locations that Robust +; * uses to write data. + +; Also put grid specific stuff here. + + +[Paths] + AssetsPath = "../../AssetFiles" + BackupPath = "../../backups" + CachePath = "../../caches" + DbPath = "../../db" + LogPath = "../../logs" + + +[Const] + MOTD = "Welcome to your local grid." + + GridName = "localhost Grid" + ShortGridName = "lg" + + ; For a grid these will usually be the externally accessible IP/DNS + ; name and use default public port 8002 and default private port 8003 + ; For a standalone this will usually be the externally accessible IP/DNS + ; name and use default public port 9000. The private port is not used + ; in the configuration for a standalone. + + BaseHostname = "127.0.0.1" + HostName = "localhost" + BaseURL = http://${Const|BaseHostname} + GridURL = http://${Const|BaseHostname} + + ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" + PublicPort = "8002" + + ;# {PrivatePort} {} {PrivatePort} {8003} "8003" + PrivatePort = "8003" + + + DataProvider = "OpenSim.Data.MySQL.dll" + ConnectionString = "Data Source=localhost;Database=****;User ID=****;Password=****;Old Guids=true;" + + + ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER + AssetServerPort = "8003" -- cgit v1.1