diff options
author | David Walter Seikel | 2016-11-07 17:16:53 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-07 17:16:53 +1000 |
commit | 9adbc9cf71a883b21af171c6d0f61607c315f4b6 (patch) | |
tree | 9755a9ee0643afccd8affb4cd9dde00fb50d7757 | |
parent | Adjust basic .ini files. See below for details. (diff) | |
download | opensim-SC_OLD-9adbc9cf71a883b21af171c6d0f61607c315f4b6.zip opensim-SC_OLD-9adbc9cf71a883b21af171c6d0f61607c315f4b6.tar.gz opensim-SC_OLD-9adbc9cf71a883b21af171c6d0f61607c315f4b6.tar.bz2 opensim-SC_OLD-9adbc9cf71a883b21af171c6d0f61607c315f4b6.tar.xz |
Example config.ini, for the basic grid / sim configuration.
-rw-r--r-- | config/config.ini | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config/config.ini b/config/config.ini new file mode 100644 index 0000000..f60c7af --- /dev/null +++ b/config/config.ini | |||
@@ -0,0 +1,41 @@ | |||
1 | ; ** | ||
2 | ; * The Const section allows us to define some basic information that we | ||
3 | ; * will use throughout our configuration. We will provide examples for | ||
4 | ; * setting the base url of the Robust server and the public and private ports | ||
5 | ; * it uses. Changing the values of the constants will set the operating | ||
6 | ; * parameters thoughout the configuration. Other constants that may prove | ||
7 | ; * to be useful may be added to the followin section. They may be | ||
8 | ; * referenced anywhere in the configuration by using ${Const|Name}. One | ||
9 | ; * such use is providing a base path for setting locations that Robust | ||
10 | ; * uses to write data. | ||
11 | |||
12 | |||
13 | [Const] | ||
14 | MOTD = "Welcome to this virtual world." | ||
15 | |||
16 | AssetsPath = "../../AssetFiles" | ||
17 | CachePath = "../../caches" | ||
18 | ConfigPath = "../../config" | ||
19 | |||
20 | GridName = "My virtual world" | ||
21 | |||
22 | ; For a grid these will usually be the externally accessible IP/DNS | ||
23 | ; name and use default public port 8002 and default private port 8003 | ||
24 | ; For a standalone this will usually be the externally accessible IP/DNS | ||
25 | ; name and use default public port 9000. The private port is not used | ||
26 | ; in the configuration for a standalone. | ||
27 | |||
28 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | ||
29 | HostName = "localhost" | ||
30 | BaseURL = http://127.0.0.1 | ||
31 | |||
32 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | ||
33 | PublicPort = "8002" | ||
34 | |||
35 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | ||
36 | PrivatePort = "8003" | ||
37 | |||
38 | |||
39 | DataProvider = "OpenSim.Data.MySQL.dll" | ||
40 | ConnectionString = "Data Source=localhost;Database=$MYSQL_DB;User ID=$MYSQL_USER;Password=$MYSQL_PASSWORD;Old Guids=true;" | ||
41 | |||