diff options
author | onefang | 2019-05-19 22:57:26 +1000 |
---|---|---|
committer | onefang | 2019-05-19 22:57:26 +1000 |
commit | 5e27d15a1f8045de70e5b061dcda51b0e5555701 (patch) | |
tree | 75d3eb166bfeb37654237b5592aeda00d324295a /bin/OpenSim.ini | |
parent | Build instructions ++ (diff) | |
download | opensim-SC_OLD-5e27d15a1f8045de70e5b061dcda51b0e5555701.zip opensim-SC_OLD-5e27d15a1f8045de70e5b061dcda51b0e5555701.tar.gz opensim-SC_OLD-5e27d15a1f8045de70e5b061dcda51b0e5555701.tar.bz2 opensim-SC_OLD-5e27d15a1f8045de70e5b061dcda51b0e5555701.tar.xz |
Major clean up of .ini files.
Sorry about the lack of details.
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/bin/OpenSim.ini b/bin/OpenSim.ini new file mode 100644 index 0000000..0087258 --- /dev/null +++ b/bin/OpenSim.ini | |||
@@ -0,0 +1,57 @@ | |||
1 | ;; This is the main configuration file for OpenSimulator. | ||
2 | ;; If it's named OpenSim.ini then it will be loaded by OpenSimulator. | ||
3 | ;; If it's named OpenSim.ini.example then you will need to copy it to | ||
4 | ;; OpenSim.ini first (if that file does not already exist) | ||
5 | ;; | ||
6 | ;; Once you have copied OpenSim.ini.example to OpenSim.ini you will at least | ||
7 | ;; need to set the constants in the [Const] section and pick an architecture | ||
8 | ;; in the [Architecture] section at the end of this file. The architecture | ||
9 | ;; will require a suitable .ini file in the config-include directory, either | ||
10 | ;; StandaloneCommon.ini or GridCommon.ini which you can copy and modify from the | ||
11 | ;; available .example files. | ||
12 | ;; | ||
13 | ;; The settings in this file are in the form "<key> = <value>". For example, | ||
14 | ;; save_crashes = false in the [Startup] section below. | ||
15 | ;; | ||
16 | ;; All settings are initially commented out and the default value used, as | ||
17 | ;; found in OpenSimDefaults.ini. To change a setting, first uncomment it by | ||
18 | ;; deleting the initial semicolon (;) and then change the value. This will | ||
19 | ;; override the value in OpenSimDefaults.ini | ||
20 | ;; | ||
21 | ;; If you want to find out what configuration OpenSimulator has finished with | ||
22 | ;; once all the configuration files are loaded then type "config show" on the | ||
23 | ;; region console command line. | ||
24 | ;; | ||
25 | ;; | ||
26 | ;; NOTES FOR DEVELOPERS REGARDING THE FORMAT OF THIS FILE | ||
27 | ;; | ||
28 | ;; All leading white space is ignored, but preserved. | ||
29 | ;; | ||
30 | ;; Double semicolons denote a text comment | ||
31 | ;; | ||
32 | ;; A * in the choices list will allow an empty entry. | ||
33 | ;; An empty question will set the default if the dependencies are | ||
34 | ;; satisfied. | ||
35 | ;; | ||
36 | ;; ; denotes a commented out option. | ||
37 | ;; Any options added to OpenSim.ini.example should be initially commented | ||
38 | ;; out. | ||
39 | |||
40 | |||
41 | [Architecture] | ||
42 | ;; Uncomment one of the following includes as required. For instance, to create a standalone OpenSim, | ||
43 | ;; uncomment Include-Architecture = "config-include/Standalone.ini" | ||
44 | ;; | ||
45 | ;; Then you will need to copy and edit the corresponding *Common.example file in config-include/ | ||
46 | ;; that the referenced .ini file goes on to include. | ||
47 | ;; | ||
48 | ;; For instance, if you chose "config-include/Standalone.ini" then you will need to copy | ||
49 | ;; "config-include/StandaloneCommon.ini.example" to "config-include/StandaloneCommon.ini" before | ||
50 | ;; editing it to set the database and backend services that OpenSim will use. | ||
51 | ;; | ||
52 | ; Include-Architecture = "config-include/Standalone.ini" | ||
53 | ; Include-Architecture = "config-include/StandaloneHypergrid.ini" | ||
54 | ; Include-Architecture = "config-include/Grid.ini" | ||
55 | Include-Architecture = "config-include/GridHypergrid.ini" | ||
56 | ; Include-Architecture = "config-include/SimianGrid.ini" | ||
57 | ; Include-Architecture = "config-include/HyperSimianGrid.ini" | ||