diff options
Diffstat (limited to 'bin/config-include/config.ini.localhost_example')
-rw-r--r-- | bin/config-include/config.ini.localhost_example | 52 |
1 files changed, 52 insertions, 0 deletions
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 @@ | |||
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 | ; Also put grid specific stuff here. | ||
13 | |||
14 | |||
15 | [Paths] | ||
16 | AssetsPath = "../../AssetFiles" | ||
17 | BackupPath = "../../backups" | ||
18 | CachePath = "../../caches" | ||
19 | DbPath = "../../db" | ||
20 | LogPath = "../../logs" | ||
21 | |||
22 | |||
23 | [Const] | ||
24 | MOTD = "Welcome to your local grid." | ||
25 | |||
26 | GridName = "localhost Grid" | ||
27 | ShortGridName = "lg" | ||
28 | |||
29 | ; For a grid these will usually be the externally accessible IP/DNS | ||
30 | ; name and use default public port 8002 and default private port 8003 | ||
31 | ; 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 | ||
33 | ; in the configuration for a standalone. | ||
34 | |||
35 | BaseHostname = "127.0.0.1" | ||
36 | HostName = "localhost" | ||
37 | BaseURL = http://${Const|BaseHostname} | ||
38 | GridURL = http://${Const|BaseHostname} | ||
39 | |||
40 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | ||
41 | PublicPort = "8002" | ||
42 | |||
43 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | ||
44 | PrivatePort = "8003" | ||
45 | |||
46 | |||
47 | DataProvider = "OpenSim.Data.MySQL.dll" | ||
48 | ConnectionString = "Data Source=localhost;Database=****;User ID=****;Password=****;Old Guids=true;" | ||
49 | |||
50 | |||
51 | ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER | ||
52 | AssetServerPort = "8003" | ||