aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-18Add Destiny Grid config.onefang1-0/+87
2019-08-25typo--onefang1-1/+1
2019-08-23Allow anyone to create NPCs. Thought I did this before? Twice?onefang1-1/+1
2019-08-23Update documentation.onefang1-1/+1
Write some more. Correct some spelling errors. Clean up some out of date stuff. Make it consistant. Rearrange things.
2019-08-18Add HTTPS configs.onefang3-0/+6
2019-08-18Better consistency with the other config.ini files.onefang1-3/+3
2019-08-13Godliness can be in the first name as well.onefang1-0/+1
As it is in IG.
2019-08-04Add a basic generic web server, and a login page, plus stubs for the other ↵onefang3-0/+47
basic pages. And update everyone to suit.
2019-08-02Oops, move the GridService Region_ stuff to grid specific config files.onefang2-0/+12
2019-07-31Automatically add members to certain groups, and HGers from specific grids ↵onefang1-2/+2
to certain other groups. It doesn't let them know, though the last group added will be their active group. This replaces a PHP script I used to use, that got broken by a PHP update. It also didn't let people know, no one complained. This is better.
2019-07-28Jiggle the grid specific configs.onefang4-43/+53
Add GodNames. Move the Groups and AuthorizationService sections back to config_*. Fix up the AuthorizationService for some sims. Add the so far not written AddDefaultGroup options. I'll write this soon.
2019-07-25Merge LureModule into HGLureModule.onefang2-2/+0
2019-07-25Gatekeeper -> GatekeeperURIonefang4-8/+8
Coz it says all over the source code - // Legacy. Remove soon! And has since later OpenSim 0.7s.
2019-07-04Put ConfigPath back in.onefang3-0/+3
ROBUST needs it.
2019-07-04Move the MG configs to their own file.onefang2-89/+87
2019-06-19IG godliness is different.onefang1-0/+5
2019-06-03Adjust [AuthorizationService] sections to use the new DefaultRegionAccess.onefang2-53/+37
2019-05-22Oops--onefang3-3/+3
2019-05-22Major tweaking of the scripts to suit the new setup.onefang4-94/+74
2019-05-19Some extra examples and performance .ini files.onefang7-0/+3825
2019-05-19Major clean up of .ini files.onefang5-2/+761
Sorry about the lack of details.
2019-05-19Less Oh Silly Threat detection.onefang1-121/+127
Scripts run a little faster if they don't stop to be overly paranoid all the time.
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang12-0/+1705
2016-11-04Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel13-1951/+0
Log configs are still in the bin directory.
2016-11-03Fix up lures. Maybe.David Walter Seikel1-1/+5
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel9-285/+691
2013-09-10More changing to production grid. Double oops.David Walter Seikel1-6/+6
2013-09-10Fix local lures.David Walter Seikel1-0/+2
2013-09-10Switch to the productien grid. Oops.David Walter Seikel1-17/+17
2013-03-14Add IG specific config.David Walter Seikel1-0/+300
2012-12-07Added missing config var in grided sims.Diva Canto1-0/+5
2012-11-02HG: flip all configs to HG2.0. PLEASE CHECK YOUR EXISTING HG CONFIGS AGAINST ↵Diva Canto2-71/+99
THESE.
2012-09-26Use GridUser properly for foreign users.Diva Canto1-0/+1
2012-09-22HG 2.0: User Agent Service now can also control where the local users can ↵Diva Canto1-1/+18
go. Domain-name and user-level based. \o/
2012-09-21More HG 2.0: access control at the Gatekeeper. \o/Diva Canto1-1/+10
2012-09-21HG 2.0: added asset import/export policies at the sim too.Diva Canto2-1/+21
2012-09-20Improvement over last commit: refactor the asset permissions code, so that ↵Diva Canto1-4/+6
it can be used by both the HG Asset Service and the simulator. Also renamed the config vars to something more intuitive
2012-09-20More HG2.0: Added permission policies in HGAsset Service based on asset ↵Diva Canto1-0/+11
types. The policies are given in the config. This is only half of the story. The other half, pertaining to exports/imports made by the sim, will be done next.
2012-09-15More on HG2.0: added the possibility of controlling the appearance that ↵Diva Canto1-0/+1
avies use to visit other grids. Not as good as I wanted, but good enough. Unfortunately we can't switch the appearance from under the avie without getting into a lot of weirdnesses because appearance is viewer-controlled. So instead, when this control is on, I'm disallowing HG-TP unless the user is wearing an allowed HG appearance -- the user gets a warning and needs to switch appearance. WARNING: I'm still not committing the config vars because this is still not ready for ppl to test.
2012-09-15For FlotsamAssetCache, always update access times of cached scene assets ↵Justin Clark-Casey (justincc)1-7/+0
before looking for files to expire. This is to resolve a problem where an asset marked as local but not temporary but still used in the scene would be removed. The timed expiry scan no longer tries to refetch assets from the scene that are not currently in the cache - this is not helpful since it just drags a lot of data into the cache that may never be referenced. This removes the DeepScanBeforePurge option since setting this to false will introduce the above problem. This previously had a default of true.
2012-09-06Added missing configs, and deleted the [Profile] part on the Hypergrind config.Diva Canto1-2/+4
2012-08-23Add an [HGAssetService] section to SQLiteStandalone.ini with the same ↵Justin Clark-Casey (justincc)1-0/+10
connection string as [AssetService]. This is necessary because commit 8131a24 (Tue Mar 27 10:08:13 2012) started passing the config section name rather than hardcoding "AssetService" This meant that the HG external-facing asset service tried to read ConnectionString from [HGAssetService] rather than [AssetService]. On SQLite, not finding this meant that it fell back to [DatabaseService], which is set for OpenSim.db rather than Asset.db. Therefore, all external asset requests returned null. Solution taken here is to create an [HGAssetService] section with the same ConnectionString as [AssetService]. This bug does not affect normal MySQL/MSSQL config since they use the [DatabaseService] connection string anyway. Addresses http://opensimulator.org/mantis/view.php?id=6200, many thanks to DanBanner for identifying the exact problem commit which was very helpful. This was a regression from OpenSimulator 0.7.3.1 which did not contain this bug.
2012-06-04Remove profile from basic configurationMelanie2-6/+0
2012-05-04Calculate the Daylight Savings Time information sent to the viewer based on ↵Justin Clark-Casey (justincc)1-0/+12
US Pacific Standard Time rather than whatever timezone the login server is set to. This is because the viewer doesn't receive a timezone from the server but bases its displays on Pacific Standard Time. However, it still expects to receive notification from the server as to whether or not Daylight Savings Time for PST is in operation. This commit introduces a new DSTZone setting in the [LoginService] config setting that accepts a list of timezone names valid across different platforms to calculate Pacific DST. If you need the old behaviour of calculating DST based on the local timezone of the server running the login service, then please override DSTZone with "local". A mailing list announcement will be made later. Thanks to Olivier Van Helden and Gudule Lapointe for determining this behaviour and providing this patch. From http://opensimulator.org/mantis/view.php?id=5972
2012-04-12make changes to FlotsamCache.ini.example as noted in mantis #5960nebadon1-2/+2
http://opensimulator.org/mantis/view.php?id=5960
2012-04-11HGFriendsModule: Added optional user level based restriction to send ↵Snoopy Pfeffer2-0/+8
friendship invitations to foreign users.
2012-04-10minor: convert tabs to spaces in config example files from recent 7c534e5Justin Clark-Casey (justincc)1-6/+6
2012-04-07Added gatekeeper and uas addresses to grid info, so that viewers can take ↵Diva Canto1-0/+8
advantage of that info.
2012-03-27User level based restrictions for HyperGrid teleports, asset uploads, group ↵Snoopy Pfeffer1-0/+7
creations and getting contacted from other grids. Incoming HyperGrid teleports can also be restricted to local users.
2012-03-20HG Friends: allow the establishment of HG friendships without requiring ↵Diva Canto1-1/+5
co-presence in the same sim. Using avatar picker, users can now search for names such as "first.last@grid.com:9000", find them, and request friendship. Friendship requests are stored if target user is offline. TESTED ON STANDALONE ONLY.