aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include/config_localhost.ini
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/config-include/config_localhost.ini (renamed from bin/config-include/config.ini.localhost_example)32
1 files changed, 13 insertions, 19 deletions
diff --git a/bin/config-include/config.ini.localhost_example b/bin/config-include/config_localhost.ini
index aa26abd..31f2f2c 100644
--- a/bin/config-include/config.ini.localhost_example
+++ b/bin/config-include/config_localhost.ini
@@ -1,13 +1,12 @@
1; ** 1; ** information that we
2; * The Const section allows us to define some basic information that we 2; will use throughout our configuration. We will provide examples for
3; * will use throughout our configuration. We will provide examples for 3; setting the base url of the ROBUST server and the public and private ports
4; * setting the base url of the Robust server and the public and private ports 4; it uses. Changing the values of the constants will set the operating
5; * it uses. Changing the values of the constants will set the operating 5; parameters thoughout the configuration. Other constants that may prove
6; * parameters thoughout the configuration. Other constants that may prove 6; to be useful may be added to the followin section. They may be
7; * to be useful may be added to the followin section. They may be 7; referenced anywhere in the configuration by using ${Const|Name}. One
8; * referenced anywhere in the configuration by using ${Const|Name}. One 8; such use is providing a base path for setting locations that ROBUST
9; * such use is providing a base path for setting locations that Robust 9; uses to write data.
10; * uses to write data.
11 10
12; Also put grid specific stuff here. 11; Also put grid specific stuff here.
13 12
@@ -31,22 +30,17 @@
31 ; For a standalone this will usually be the externally accessible IP/DNS 30 ; For a standalone this will usually be the externally accessible IP/DNS
32 ; name and use default public port 9000. The private port is not used 31 ; name and use default public port 9000. The private port is not used
33 ; in the configuration for a standalone. 32 ; in the configuration for a standalone.
34
35 BaseHostname = "127.0.0.1" 33 BaseHostname = "127.0.0.1"
36 HostName = "localhost" 34 HostName = "localhost"
37 BaseURL = http://${Const|BaseHostname} 35 BaseURL = http://${Const|BaseHostname}
38 GridURL = http://${Const|BaseHostname} 36 GridURL = http://${Const|BaseHostname}
39 37
40 ;# {PublicPort} {} {PublicPort} {8002 9000} "8002"
41 PublicPort = "8002" 38 PublicPort = "8002"
42
43 ;# {PrivatePort} {} {PrivatePort} {8003} "8003"
44 PrivatePort = "8003" 39 PrivatePort = "8003"
45 40
41 ; The public port of the ROBUST asset server, which might be different.
42 AssetServerPort = "8003"
46 43
44 ; Database credentials.
47 DataProvider = "OpenSim.Data.MySQL.dll" 45 DataProvider = "OpenSim.Data.MySQL.dll"
48 ConnectionString = "Data Source=localhost;Database=****;User ID=****;Password=****;Old Guids=true;" 46 ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;"
49
50
51 ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER
52 AssetServerPort = "8003"