aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authoronefang2020-04-18 19:02:07 +1000
committeronefang2020-04-18 19:02:07 +1000
commit8dd8943e283e87389675e8222549f96dde50d87e (patch)
tree324995ec7600bc504c7352ab29414dd5098cfcdd /bin
parentStart all the sims. (diff)
downloadopensim-SC_OLD-8dd8943e283e87389675e8222549f96dde50d87e.zip
opensim-SC_OLD-8dd8943e283e87389675e8222549f96dde50d87e.tar.gz
opensim-SC_OLD-8dd8943e283e87389675e8222549f96dde50d87e.tar.bz2
opensim-SC_OLD-8dd8943e283e87389675e8222549f96dde50d87e.tar.xz
Add Destiny Grid config.
Diffstat (limited to 'bin')
-rw-r--r--bin/config-include/config_DG.ini87
1 files changed, 87 insertions, 0 deletions
diff --git a/bin/config-include/config_DG.ini b/bin/config-include/config_DG.ini
new file mode 100644
index 0000000..c407733
--- /dev/null
+++ b/bin/config-include/config_DG.ini
@@ -0,0 +1,87 @@
1; The Const section allows us to define some basic 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 ConfigPath = "../../config"
19 DbPath = "../../db"
20 LogPath = "../../logs"
21 WebPath = "../../web"
22
23[Const]
24 MOTD = "Welcome to Destiny Grid."
25
26 GridName = "Destiny Grid"
27 ShortGridName = "DG"
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 BaseHostname = "http://destiny-grid.pleasecome.in"
35 HostName = "destiny-grid.pleasecome.in"
36 BaseURL = ${Const|BaseHostname}
37 GridURL = ${Const|BaseHostname}
38 SSLURL = "https://${Const|HostName}"
39
40 PublicPort = "8002"
41 PrivatePort = "8003"
42 PublicSSLPort = "8443"
43
44 ; The public port of the ROBUST asset server, which might be different.
45 AssetServerPort = "8003"
46
47 ; Database credentials.
48 DataProvider = "OpenSim.Data.MySQL.dll"
49 ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;"
50
51[AuthorizationService]
52 DefaultRegionAccess = "DisallowForeigners"
53 ; If you have regions with access restrictions
54 ; specify them here using the convention
55 ; Region_<Region_Name> = <flags>
56 ; Valid flags are:
57 ; DisallowForeigners -- HG visitors not allowed
58 ; DisallowResidents -- only Admins and Managers allowed
59 ; None -- No restrictions.
60
61 Region_Sandbox = "None"
62 Region_Destiny_Welcome = "None"
63 Region_Destiny_Shopping = "None"
64
65[Groups]
66 AddDefaultGroup = "Destiny Grid support|Destiny Grid chat"
67
68[Permissions]
69 region_owner_is_god = true
70 region_manager_is_god = true
71 parcel_owner_is_god = false
72
73[GodNames]
74 Enabled = true
75 FullNames = "onefang rejected,Rhi Syn"
76; FirstNames = "Infinite,infinite"
77; Surnames = "Kryztlsk"
78
79[GridService]
80 Region_Sandbox = "DefaultHGRegion, FallbackRegion, Persistent"
81 Region_Destiny_Welcome = "DefaultRegion, FallbackRegion, Persistent"
82 Region_Destiny_Shopping = "FallbackRegion, Persistent"
83
84; Normally this section goes in the ThisSim.ini file, but this is common for all.
85;[Region]
86; InternalAddress = "0.0.0.0"
87; ExternalHostName = "destiny-grid.pleasecome.in"