aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include/StandaloneCommon.ini.example (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix missing " for variable SRV_IMServerURI in example fileMichael Cerquoni2013-10-121-1/+1
|
* Fernando Oliveira's Postgress SQL Server Data Connector as a single commit.Fernando Oliveira2013-10-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added PostGreSQL support * Added MySQL/MySQLXGroupData.cs * PostgreSQL data access implementation * PostgreSQL dll binarie and RegionStore.migrations * Migrations Scripts from MSSQL to POSTGRES * Postgres SQL Type fixes * Postgres SQL Connection string * Data type issues * more fixes * tests and +tests * UUID x string - FIGHT! * Fixed PG types to internal csharp types * More data type fix (PostgreSQL fields are case sensitive) :( * more field case sensitive fixes * changed the migration files to be case sensitive for fields. * fixed fields case * finished converting, now search for hidden bugs. * some more fixes * bool type fixed * more case fixes; * creatorID case fixed * case fields fixed * fixed default now() for TMStamp fields with don't allow nulls. * fix case sensitve for Region name and Estate name * fixed case for names for search * fix class name Error * Bug fixed on select and migrations * Un-Reverting my change due to Postgres issue with the ILIKE function * Fixed some issued for Diva Distro * Fixes for integration with Diva Distro * Added System.Core to prebuild.xml for PG project * Configured to make DIff for Push to OpenSim Project * Diffs only to PostgreSQL mods.
* * Added a Basic DOS protection container/base object for the most common ↵teravus2013-10-071-1/+18
| | | | | | | | | HTTP Server handlers. XMLRPC Handler, GenericHttpHandler and <Various>StreamHandler * Applied the XmlRpcBasicDOSProtector.cs to the login service as both an example, and good practice. * Applied the BaseStreamHandlerBasicDOSProtector.cs to the friends service as an example of the DOS Protector on StreamHandlers * Added CircularBuffer, used for CPU and Memory friendly rate monitoring. * DosProtector has 2 states, 1. Just Check for blocked users and check general velocity, 2. Track velocity per user, It only jumps to 2 if it's getting a lot of requests, and state 1 is about as resource friendly as if it wasn't even there.
* minor: Make config-include .ini files more consistentJustin Clark-Casey (justincc)2013-09-181-56/+53
| | | | | Chiefly tabs to spaces. No actual setting changes
* minor: add doc about DefaultHGRegion and some of the other GridService ↵Justin Clark-Casey (justincc)2013-09-051-2/+18
| | | | region settings (though not all as of yet)
* Add Option: ClassifiedFeeBlueWall2013-06-131-0/+3
| | | | | | | | | | Add option to set minimum fee for publishing classifieds. Many viewers have a hard coded minimum of 50, which makes publishing classifieds fail where grids have no economy. This allows the grid to set the minimum fee to a suitable value for their operation. The option is located in the [LoginService] section and defaults to 0. The value is sent as "classified_fee" in the login response.
* Revert "Add option to set minimum fee for classified ads"BlueWall2013-06-111-3/+0
| | | | This reverts commit 90097de6c3cf58989698b37c89baa8268895fc86.
* Add option to set minimum fee for classified adsBlueWall2013-06-111-0/+3
| | | | | | | Upcoming phoenix-firestorm (4.4.1) adds a configurable option for setting the minimum price for publishing a classified ad. http://hg.phoenixviewer.com/phoenix-firestorm-lgpl/rev/43415d69b048
* UserProfilesBlueWall2013-05-301-0/+16
| | | | UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
* Clean up unused config and config comments.Diva Canto2013-04-211-7/+7
|
* Moved the HG default variables out of [Startup] and into their own section ↵Diva Canto2013-02-271-0/+21
| | | | [Hypergrid] in *Common.ini.example. Backwards compatible for now.
* Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵Diva Canto2013-02-211-10/+15
| | | | default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency.
* Add information about MinLoginLevel to example ini filesJustin Clark-Casey (justincc)2013-02-201-0/+5
|
* HG: flip all configs to HG2.0. PLEASE CHECK YOUR EXISTING HG CONFIGS AGAINST ↵Diva Canto2012-11-021-70/+92
| | | | THESE.
* 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-211-1/+1
|
* 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.
* HGFriendsModule: Added optional user level based restriction to send ↵Snoopy Pfeffer2012-04-111-0/+4
| | | | 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.
* 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.
* 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-171-0/+10
| | | | 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.
* HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto2012-01-121-3/+3
| | | | 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.
* Add more documentation to EstateConnectorString in StandaloneCommon.ini.exampleJustin Clark-Casey (justincc)2011-12-171-1/+4
|
* Make config comments about choosing assetcache modules clearer.Justin Clark-Casey (justincc)2011-10-221-17/+17
| | | | | 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
* 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-161-5/+6
| | | | | | | (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.
* 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
|
* Trailing / in MapTileURL must be there!Diva Canto2011-06-121-1/+1
|
* First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto2011-06-121-0/+3
| | | | some issues with the zoom level -- TBD.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2011-06-031-0/+36
|\
| * Move the "!!!Standalone Only!!!" [FreeswitchService] section from ↵Justin Clark-Casey (justincc)2011-06-021-0/+36
| | | | | | | | OpenSim.ini.example to config/StandaloneCommon.ini.example where it belongs.
* | .ini.example's updated for HG LandmarksDiva Canto2011-06-031-0/+1
|/
* Adding MSSQL connectionString exampleMakopoppo2011-05-301-0/+8
|
* HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto2011-05-271-0/+5
| | | | WARNING: additional configuration for HG inis -- see *Common.ini.example
* Added missing config vars to StandaloneCommon.ini.example and fixed the ones ↵Diva Canto2011-05-261-0/+2
| | | | in Robust.HG.ini.example
* Thank you Snoopy for a patch that adds some filtering to client versions ↵Diva Canto2011-04-271-0/+34
| | | | allowed at login and HG-login times. NOTE: additional (optional) configuration variables in [LoginService] and [GatekeeperService]. See .examples.
* Clean up freeswitch config to what is currently required. Add explanation ↵Justin Clark-Casey (justincc)2011-04-191-13/+5
| | | | to config parameters. Clean up some log messages.
* Remove the SQLite legacy adaptor. This is no longer needed now that the ↵Justin Clark-Casey (justincc)2011-04-071-5/+0
| | | | | | main adaptor works on Mac OS X. The SQLite legacy adapator was also not at all well maintained, even worse than the mainline sqlite adapator.
* Fix mantis #5413. WARNING: new config variable in section [GridService] of ↵Diva Canto2011-03-281-0/+5
| | | | the simulators called Gatekeeper -- intended to have the URL of the grid's Gatekeeper service (so that it can be checked against). See ini.examples.
* Changed default directory for storing map tile images from remote regions.Marck2011-02-161-1/+1
|
* Added a config var to HGInventoryAccessModule called OutboundPermission that ↵Diva Canto2011-02-041-0/+4
| | | | controls whether the sim lets asset POSTs happen to foreign grids or not. It's True by default. If ppl want to allow foreign visitors but don't want to allow any assets out of their grid, they should set this to False. This is the beginning of policies for these things...
* Show map tile for hyperlinks. Perform Check4096 before adding a hyperlink.Marck2010-12-131-0/+3
| | | | | | Configuration option AssetService in section [GridService] must be set to enable this functionality. Map tiles do currently not show for hyperlinks set in simulators that are connected to grids, see Mantis #5270.
* Creator information preserved upon HG transfers.Diva Canto2010-11-261-0/+2
|