diff options
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/config.ini.IG_example | 54 | ||||
-rw-r--r-- | bin/config-include/config_IG.ini | 46 | ||||
-rw-r--r-- | bin/config-include/config_MG.ini (renamed from bin/config-include/config.ini.MG_example) | 36 | ||||
-rw-r--r-- | bin/config-include/config_localhost.ini (renamed from bin/config-include/config.ini.localhost_example) | 32 |
4 files changed, 74 insertions, 94 deletions
diff --git a/bin/config-include/config.ini.IG_example b/bin/config-include/config.ini.IG_example deleted file mode 100644 index 710ccae..0000000 --- a/bin/config-include/config.ini.IG_example +++ /dev/null | |||
@@ -1,54 +0,0 @@ | |||
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 = "onefang needs a little coding or sysadmin work to keep IG going. Please help me find some." | ||
25 | MOTD = "More members are coming, slowly. Invite your friends to." | ||
26 | |||
27 | GridName = "Infinite Grid" | ||
28 | ShortGridName = "IG" | ||
29 | |||
30 | ; For a grid these will usually be the externally accessible IP/DNS | ||
31 | ; name and use default public port 8002 and default private port 8003 | ||
32 | ; For a standalone this will usually be the externally accessible IP/DNS | ||
33 | ; name and use default public port 9000. The private port is not used | ||
34 | ; in the configuration for a standalone. | ||
35 | |||
36 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | ||
37 | BaseHostname = "http://grid.infinitegrid.org" | ||
38 | HostName = "grid.infinitegrid.org" | ||
39 | BaseURL = http://grid.infinitegrid.org | ||
40 | GridURL = http://grid.infinitegrid.org | ||
41 | |||
42 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | ||
43 | PublicPort = "8002" | ||
44 | |||
45 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | ||
46 | PrivatePort = "8003" | ||
47 | |||
48 | |||
49 | DataProvider = "OpenSim.Data.MySQL.dll" | ||
50 | ConnectionString = "Data Source=localhost;Database=****;User ID=****;Password=****;Old Guids=true;" | ||
51 | |||
52 | |||
53 | ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER | ||
54 | AssetServerPort = "8003" | ||
diff --git a/bin/config-include/config_IG.ini b/bin/config-include/config_IG.ini new file mode 100644 index 0000000..3ec215c --- /dev/null +++ b/bin/config-include/config_IG.ini | |||
@@ -0,0 +1,46 @@ | |||
1 | information that we | ||
2 | ; 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 | ; it uses. Changing the values of the constants will set the operating | ||
5 | ; parameters thoughout the configuration. Other constants that may prove | ||
6 | ; 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 | ; such use is providing a base path for setting locations that ROBUST | ||
9 | ; uses to write data. | ||
10 | |||
11 | ; Also put grid specific stuff here. | ||
12 | |||
13 | |||
14 | [Paths] | ||
15 | AssetsPath = "../../AssetFiles" | ||
16 | BackupPath = "../../backups" | ||
17 | CachePath = "../../caches" | ||
18 | DbPath = "../../db" | ||
19 | LogPath = "../../logs" | ||
20 | |||
21 | |||
22 | [Const] | ||
23 | MOTD = "onefang needs a little coding or sysadmin work to keep IG going. Please help me find some." | ||
24 | |||
25 | GridName = "Infinite Grid" | ||
26 | ShortGridName = "IG" | ||
27 | |||
28 | ; For a grid these will usually be the externally accessible IP/DNS | ||
29 | ; name and use default public port 8002 and default private port 8003 | ||
30 | ; For a standalone this will usually be the externally accessible IP/DNS | ||
31 | ; name and use default public port 9000. The private port is not used | ||
32 | ; in the configuration for a standalone. | ||
33 | BaseHostname = "http://grid.infinitegrid.org" | ||
34 | HostName = "grid.infinitegrid.org" | ||
35 | BaseURL = ${Const|BaseHostname} | ||
36 | GridURL = ${Const|BaseHostname} | ||
37 | |||
38 | PublicPort = "8002" | ||
39 | PrivatePort = "8003" | ||
40 | |||
41 | ; The public port of the ROBUST asset server, which might be different. | ||
42 | AssetServerPort = "8003" | ||
43 | |||
44 | ; Database credentials. | ||
45 | DataProvider = "OpenSim.Data.MySQL.dll" | ||
46 | ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;" | ||
diff --git a/bin/config-include/config.ini.MG_example b/bin/config-include/config_MG.ini index 737bff4..4f675d7 100644 --- a/bin/config-include/config.ini.MG_example +++ b/bin/config-include/config_MG.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,28 +30,23 @@ | |||
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 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | ||
36 | BaseHostname = "http://misfitzgrid.com" | 33 | BaseHostname = "http://misfitzgrid.com" |
37 | HostName = "misfitzgrid.com" | 34 | HostName = "misfitzgrid.com" |
38 | BaseURL = http://misfitzgrid.com | 35 | BaseURL = ${Const|BaseHostname} |
39 | GridURL = http://misfitzgrid.com | 36 | GridURL = ${Const|BaseHostname} |
40 | 37 | ||
41 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | ||
42 | PublicPort = "8002" | 38 | PublicPort = "8002" |
43 | |||
44 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | ||
45 | PrivatePort = "8003" | 39 | PrivatePort = "8003" |
46 | 40 | ||
41 | ; The public port of the ROBUST asset server, which might be different. | ||
42 | AssetServerPort = "8003" | ||
47 | 43 | ||
44 | ; Database credentials. | ||
48 | DataProvider = "OpenSim.Data.MySQL.dll" | 45 | DataProvider = "OpenSim.Data.MySQL.dll" |
49 | 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;" |
50 | |||
51 | 47 | ||
52 | ; jOpenSim URL | 48 | ; jOpenSim URL |
53 | jOpensimURL = "http://misfitzgrid.com/members" | 49 | jOpensimURL = "http://misfitzgrid.com/members" |
54 | ; The public port of the Robust server -- THIS IS SPECIAL PORT FOR ASSSET SERVER | ||
55 | AssetServerPort = "8004" | ||
56 | 50 | ||
57 | 51 | ||
58 | [Network] | 52 | [Network] |
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" | ||