diff options
Diffstat (limited to '')
-rw-r--r-- | example/config/config.ini | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/example/config/config.ini b/example/config/config.ini index 99d3c96..3890e66 100644 --- a/example/config/config.ini +++ b/example/config/config.ini | |||
@@ -9,15 +9,22 @@ | |||
9 | ; * 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 |
10 | ; * uses to write data. | 10 | ; * uses to write data. |
11 | 11 | ||
12 | ; Also put grid specific stuff here. | ||
12 | 13 | ||
13 | [Const] | ||
14 | MOTD = "Welcome to this virtual world." | ||
15 | 14 | ||
15 | [Paths] | ||
16 | AssetsPath = "../../AssetFiles" | 16 | AssetsPath = "../../AssetFiles" |
17 | BackupPath = "../../backups" | ||
17 | CachePath = "../../caches" | 18 | CachePath = "../../caches" |
18 | ConfigPath = "../../config" | 19 | DbPath = "../../db" |
20 | LogPath = "../../logs" | ||
21 | |||
19 | 22 | ||
20 | GridName = "My virtual world" | 23 | [Const] |
24 | MOTD = "Welcome to your local grid." | ||
25 | |||
26 | GridName = "localhost Grid" | ||
27 | ShortGridName = "lg" | ||
21 | 28 | ||
22 | ; For a grid these will usually be the externally accessible IP/DNS | 29 | ; 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 | 30 | ; name and use default public port 8002 and default private port 8003 |
@@ -25,10 +32,10 @@ | |||
25 | ; name and use default public port 9000. The private port is not used | 32 | ; name and use default public port 9000. The private port is not used |
26 | ; in the configuration for a standalone. | 33 | ; in the configuration for a standalone. |
27 | 34 | ||
28 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | 35 | BaseHostname = "127.0.0.1" |
29 | HostName = "localhost" | 36 | HostName = "localhost" |
30 | BaseURL = http://127.0.0.1 | 37 | BaseURL = http://${Const|BaseHostname} |
31 | GridURL = http://grid.infinitegrid.org | 38 | GridURL = http://${Const|BaseHostname} |
32 | 39 | ||
33 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | 40 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" |
34 | PublicPort = "8002" | 41 | PublicPort = "8002" |
@@ -40,3 +47,6 @@ | |||
40 | DataProvider = "OpenSim.Data.MySQL.dll" | 47 | DataProvider = "OpenSim.Data.MySQL.dll" |
41 | ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;" | 48 | ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;" |
42 | 49 | ||
50 | |||
51 | ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER | ||
52 | AssetServerPort = "8003" | ||