aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Write code to create minimum necessary body parts/clothing and avatar ↵Justin Clark-Casey (justincc)2011-09-151-0/+1
| | | | | | | | | | | | entries to make a newly created user appear as a non-cloud on viewer 2 Viewer 2 no longer contains the default avatar assets (i.e. "Ruth") that would appear if the user had insufficient body part/clothing entries. Instead, avatars always appear as a cloud, which is a very bad experience for out-of-the-box OpenSim. Default is currently off. My intention is to switch it on for standalone shortly. This is not particularly flexible as "Ruth" is hardcoded, but this can change in the future, in co-ordination with the existing RemoteAdmin capabilities. Need to fix creation of suitable entries for users created as estate owners on standalone. Avatars still appear with spooky empty eyes, need to see if we can address this. This commit adds a "Default Iris" to the library (thanks to Eirynne Sieyes from http://opensimulator.org/mantis/view.php?id=1461) which can be used.
* minor: Add explanative text for the new currency parameter. Convert some ↵Justin Clark-Casey (justincc)2011-08-221-16/+17
| | | | tabs to spaces
* Change the default standalone asset cache to be the Flotsam asset cache ↵Justin Clark-Casey (justincc)2011-08-162-5/+7
| | | | | | | (with memory caching not enabled). This matches the GridCommon setting and is the best tested setting. It appears to work fine on standalone. Also, add information that the flotsam asset cache is the recommended cache, since it is most used and actively maintained.
* Added optional Login Service parameter "Currency" to be able to change the ↵Snoopy Pfeffer2011-08-141-0/+2
| | | | currency name shown in the viewer.
* Add a warning to URI config in GridCommon.ini.example not to add a slash to ↵Justin Clark-Casey (justincc)2011-07-121-18/+18
| | | | | | the end. Tidy up GridCommon.ini.example
* Make it possible to disable the file part of the flotsam asset cacheJustin Clark-Casey (justincc)2011-07-041-1/+4
| | | | | | | | This matches the ability to disable the memory part This is controlled through the FileCacheEnabled parameter in FlotsamCache.ini Default is true, so existing installations are not affected. Improved fcache command feedback when various caches are disabled. Re-enabled test for flotsam cache with file caching disabled.
* Tell hypergridders when their teleports fail because of the 4096 limit ↵Justin Clark-Casey (justincc)2011-06-241-3/+0
| | | | | | | | | | | rather than just saying "destination not found" Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module This allows us to explicitly tell the hypergridder why the teleport failed (region out of range). It also allows people on regions that are within range (on a large source grid) to teleport. The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased. The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
* Added missing config var for map image service.Diva Canto2011-06-151-0/+4
|
* V2 map now working in grids too. WARNING: A few visible configuration ↵Diva Canto2011-06-133-1/+16
| | | | variables added in order for this to work. See .ini.example changes
* Trailing / in MapTileURL must be there!Diva Canto2011-06-121-1/+1
|