aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Adjust [AuthorizationService] sections to use the new DefaultRegionAccess.onefang2019-06-032-53/+37
|
* Oops--onefang2019-05-223-3/+3
|
* Major tweaking of the scripts to suit the new setup.onefang2019-05-224-94/+74
|
* Some extra examples and performance .ini files.onefang2019-05-197-0/+3825
|
* Major clean up of .ini files.onefang2019-05-195-2/+761
| | | | Sorry about the lack of details.
* Less Oh Silly Threat detection.onefang2019-05-191-121/+127
| | | | | Scripts run a little faster if they don't stop to be overly paranoid all the time.
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-1912-0/+1705
|
* Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel2016-11-0413-1951/+0
| | | | Log configs are still in the bin directory.
* Fix up lures. Maybe.David Walter Seikel2016-11-031-1/+5
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-039-285/+691
|
* More changing to production grid. Double oops.David Walter Seikel2013-09-101-6/+6
|
* Fix local lures.David Walter Seikel2013-09-101-0/+2
|
* Switch to the productien grid. Oops.David Walter Seikel2013-09-101-17/+17
|
* Add IG specific config.David Walter Seikel2013-03-141-0/+300
|
* Added missing config var in grided sims.Diva Canto2012-12-071-0/+5
|
* HG: flip all configs to HG2.0. PLEASE CHECK YOUR EXISTING HG CONFIGS AGAINST ↵Diva Canto2012-11-022-71/+99
| | | | THESE.
* Use GridUser properly for foreign users.Diva Canto2012-09-261-0/+1
|
* HG 2.0: User Agent Service now can also control where the local users can ↵Diva Canto2012-09-221-1/+18
| | | | go. Domain-name and user-level based. \o/
* More HG 2.0: access control at the Gatekeeper. \o/Diva Canto2012-09-211-1/+10
|
* HG 2.0: added asset import/export policies at the sim too.Diva Canto2012-09-212-1/+21
|
* Improvement over last commit: refactor the asset permissions code, so that ↵Diva Canto2012-09-201-4/+6
| | | | it can be used by both the HG Asset Service and the simulator. Also renamed the config vars to something more intuitive
* More HG2.0: Added permission policies in HGAsset Service based on asset ↵Diva Canto2012-09-201-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.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2012-09-151-7/+0
|\
| * For FlotsamAssetCache, always update access times of cached scene assets ↵Justin Clark-Casey (justincc)2012-09-151-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.
* | More on HG2.0: added the possibility of controlling the appearance that ↵Diva Canto2012-09-151-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.
* Added missing configs, and deleted the [Profile] part on the Hypergrind config.Diva Canto2012-09-061-2/+4
|
* Add an [HGAssetService] section to SQLiteStandalone.ini with the same ↵Justin Clark-Casey (justincc)2012-08-231-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.
* Remove profile from basic configurationMelanie2012-06-042-6/+0
|
* Calculate the Daylight Savings Time information sent to the viewer based on ↵Justin Clark-Casey (justincc)2012-05-041-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
* make changes to FlotsamCache.ini.example as noted in mantis #5960nebadon2012-04-121-2/+2
| | | | http://opensimulator.org/mantis/view.php?id=5960
* HGFriendsModule: Added optional user level based restriction to send ↵Snoopy Pfeffer2012-04-112-0/+8
| | | | friendship invitations to foreign users.
* minor: convert tabs to spaces in config example files from recent 7c534e5Justin Clark-Casey (justincc)2012-04-101-6/+6
|
* Added gatekeeper and uas addresses to grid info, so that viewers can take ↵Diva Canto2012-04-071-0/+8
| | | | advantage of that info.
* User level based restrictions for HyperGrid teleports, asset uploads, group ↵Snoopy Pfeffer2012-03-271-0/+7
| | | | creations and getting contacted from other grids. Incoming HyperGrid teleports can also be restricted to local users.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2012-03-201-2/+1
|\ | | | | | | | | Conflicts: OpenSim/Framework/Util.cs
| * Fix configuration problems where XAssetDatabasePlugin was picked up ↵Justin Clark-Casey (justincc)2012-03-191-2/+1
| | | | | | | | | | | | | | | | | | accidentally. The asset data plugin now implements IXAssetData rather than IAssetData so the ordinary AssetService should no longer pick it up. This replaces the changes in 92b1ade. There is no longer any need to adjust your StandaloneCommon.ini/Robust.ini/Robust.HG.ini files. This may explain very recent issues in the last few weeks where textures have been disappearing or turning white (as they were going to different places). Unfortunately, you will need to rollback to an earlier database backup or reupload the textures.
* | HG Friends: allow the establishment of HG friendships without requiring ↵Diva Canto2012-03-201-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.
* More on HG access control. This commit splits the UserManagementModule into ↵Diva Canto2012-03-172-0/+2
| | | | the Basic one and the HG one, so that we can do everything that needs to be done for HG ACLs to work without interfering with the vanilla opensim. For the moment, it finds foreign users who have left a trace in the region, e.g. an object. This makes it possible to ban/IM/etc these users using the regular avatar picker. TODO: contact the UAS directly given a name of the form First.Last @foo.com.
* BAD JUSTIN!Diva Canto2012-03-171-0/+1
| | | | | People using standalone in master, please update your StandaloneCommon.ini according to this change. People using robust in master, please update your Robust.HG.ini.example[.HG].ini according to this change.
* Region access control! Region operators can now specify things like ↵Diva Canto2012-03-176-6/+24
| | | | DisallowForeigners (means what it says) and DisallowResidents (means that only admins and managers can get into the region). This puts the never-completed AuthorizationService to good use. Note that I didn't implement a grid-wide Authorization service; this service implementation is done entirely locally on the simulator. This can be changed as usual by pluging in a different AuthorizationServicesConnector.
* Add warning about only uncommenting EstateConnectionString if you know what ↵Justin Clark-Casey (justincc)2012-02-071-0/+2
| | | | you're doing to GridCommon.ini.example (was already in StandaloneCommon.ini.example)
* Remove accidental /user postfix from HomeURI in [HGInventoryAccessModule] in ↵Justin Clark-Casey (justincc)2012-01-281-1/+1
| | | | | | GridCommon.ini.example and from SRV_ProfileServerURI in [LoginService] in Robust.HG.ini.example As per http://opensimulator.org/mantis/view.php?id=5852, confirmed by diva via aiaustin
* Update osGetGrid**** functionsBlueWall2012-01-171-0/+6
| | | | The osGetGrid**** functions will now get the grid settings from the GridInfoService. Set the GridInfoURI in your ./bin/config-include/GridCommon.ini [GridInfo] section.
* HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto2012-01-122-4/+4
| | | | location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
* Bring back the Hyperlinker to the Robust console. Moved the config to ↵Diva Canto2011-12-303-3/+3
| | | | [GridService]. Changed all HG-related .inis, including HyperSimianGrid. No changes in user-facing inis.
* Add more documentation to EstateConnectorString in StandaloneCommon.ini.exampleJustin Clark-Casey (justincc)2011-12-171-1/+4
|
* Rename some of the example commented out server names to mygridserver.com ↵Justin Clark-Casey (justincc)2011-10-221-23/+21
| | | | | | | like all the others. This is to make it easier to change all these names at once, where all grids services are running from the same location. Also rearranges some lines in [Modules] so that StandaloneCommon.ini.example and GridCommon.ini.exmaple are consistent.
* Make config comments about choosing assetcache modules clearer.Justin Clark-Casey (justincc)2011-10-222-17/+19
| | | | | OpenSim needs an asset cache. Running without one will cause problems. Thanks to Ai Austin for the suggestions in http://opensimulator.org/mantis/view.php?id=4850
* Make it possible to disable the HG linker. On non-HG systems it spits yellowMelanie2011-10-123-0/+3
| | | | spam, so it should not load unless HG is desired.
* On standalone, by default create the necessary minimum body parts and ↵Justin Clark-Casey (justincc)2011-09-161-2/+5
| | | | | | | clothes necessary to display a viewer 2 avatar, as implemented in c4efb97d This is controlled by the CreateDefaultAvatarEntries switch in the [UserAccountService] section of config-include/Stnadalone.ini This is left as false in grid mode