From 8dd8943e283e87389675e8222549f96dde50d87e Mon Sep 17 00:00:00 2001 From: onefang Date: Sat, 18 Apr 2020 19:02:07 +1000 Subject: Add Destiny Grid config. --- bin/config-include/config_DG.ini | 87 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 bin/config-include/config_DG.ini (limited to 'bin/config-include/config_DG.ini') 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 @@ +; The Const section allows us to define some basic information that we +; will use throughout our configuration. We will provide examples for +; setting the base url of the ROBUST server and the public and private ports +; it uses. Changing the values of the constants will set the operating +; parameters thoughout the configuration. Other constants that may prove +; to be useful may be added to the followin section. They may be +; referenced anywhere in the configuration by using ${Const|Name}. One +; such use is providing a base path for setting locations that ROBUST +; uses to write data. + +; Also put grid specific stuff here. + + +[Paths] + AssetsPath = "../../AssetFiles" + BackupPath = "../../backups" + CachePath = "../../caches" + ConfigPath = "../../config" + DbPath = "../../db" + LogPath = "../../logs" + WebPath = "../../web" + +[Const] + MOTD = "Welcome to Destiny Grid." + + GridName = "Destiny Grid" + ShortGridName = "DG" + + ; For a grid these will usually be the externally accessible IP/DNS + ; name and use default public port 8002 and default private port 8003 + ; For a standalone this will usually be the externally accessible IP/DNS + ; name and use default public port 9000. The private port is not used + ; in the configuration for a standalone. + BaseHostname = "http://destiny-grid.pleasecome.in" + HostName = "destiny-grid.pleasecome.in" + BaseURL = ${Const|BaseHostname} + GridURL = ${Const|BaseHostname} + SSLURL = "https://${Const|HostName}" + + PublicPort = "8002" + PrivatePort = "8003" + PublicSSLPort = "8443" + + ; The public port of the ROBUST asset server, which might be different. + AssetServerPort = "8003" + + ; Database credentials. + DataProvider = "OpenSim.Data.MySQL.dll" + ConnectionString = "Data Source=MYSQL_HOST;Database=MYSQL_DB;User ID=MYSQL_USER;Password=MYSQL_PASSWORD;Old Guids=true;" + +[AuthorizationService] + DefaultRegionAccess = "DisallowForeigners" + ; If you have regions with access restrictions + ; specify them here using the convention + ; Region_ = + ; Valid flags are: + ; DisallowForeigners -- HG visitors not allowed + ; DisallowResidents -- only Admins and Managers allowed + ; None -- No restrictions. + + Region_Sandbox = "None" + Region_Destiny_Welcome = "None" + Region_Destiny_Shopping = "None" + +[Groups] + AddDefaultGroup = "Destiny Grid support|Destiny Grid chat" + +[Permissions] + region_owner_is_god = true + region_manager_is_god = true + parcel_owner_is_god = false + +[GodNames] + Enabled = true + FullNames = "onefang rejected,Rhi Syn" +; FirstNames = "Infinite,infinite" +; Surnames = "Kryztlsk" + +[GridService] + Region_Sandbox = "DefaultHGRegion, FallbackRegion, Persistent" + Region_Destiny_Welcome = "DefaultRegion, FallbackRegion, Persistent" + Region_Destiny_Shopping = "FallbackRegion, Persistent" + +; Normally this section goes in the ThisSim.ini file, but this is common for all. +;[Region] +; InternalAddress = "0.0.0.0" +; ExternalHostName = "destiny-grid.pleasecome.in" -- cgit v1.1