aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include/GridCommon.ini.example (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-43/+101
|
* Added missing config var in grided sims.Diva Canto2012-12-071-0/+5
|
* HG 2.0: added asset import/export policies at the sim too.Diva Canto2012-09-211-0/+20
|
* HGFriendsModule: Added optional user level based restriction to send ↵Snoopy Pfeffer2012-04-111-0/+4
| | | | friendship invitations to foreign users.
* 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.
* 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-121-1/+1
| | | | 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.
* 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-221-0/+2
| | | | | 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
* Change the default standalone asset cache to be the Flotsam asset cache ↵Justin Clark-Casey (justincc)2011-08-161-0/+1
| | | | | | | (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.
* 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
* V2 map now working in grids too. WARNING: A few visible configuration ↵Diva Canto2011-06-131-0/+3
| | | | variables added in order for this to work. See .ini.example changes
* Added missing "Old Guids=true" to ConnectionStringMakopoppo2011-06-101-2/+2
|
* .ini.example's updated for HG LandmarksDiva Canto2011-06-031-1/+2
|
* Adding MSSQL connectionString exampleMakopoppo2011-05-301-0/+8
|
* Fixed one comment in a config file.Diva Canto2011-05-271-0/+1
|
* HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto2011-05-271-0/+6
| | | | WARNING: additional configuration for HG inis -- see *Common.ini.example
* Last commit before pushing. WARNING: (a) DB migration on the friends table; ↵Diva Canto2011-05-261-1/+1
| | | | and (b) several config additions related to HG. See Robust.HG.ini.example, GridCommon.ini.example and/or StandaloneCommon.ini.example.
* HG IM in grid mode working fairly well. Unknown target user references ↵Diva Canto2011-05-261-0/+6
| | | | looked back in source user's User Agent service.
* 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/+6
| | | | 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.
* Make configs consistent, as per mantos #5258Diva Canto2010-12-091-1/+1
|
* Creator information preserved upon HG transfers.Diva Canto2010-11-261-0/+8
|
* Formatting cleanup.Jeff Ames2010-10-041-6/+6
|
* Make AuthorizationService optional and disabled by default. It depends onMelanie2010-09-151-0/+3
| | | | | external PHP and the default configuration makes it throw for not having a URL to this PHP
* * Added ISimulationDataService and IEstateDataServiceJohn Hurliman2010-09-121-0/+21
| | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
* eliminate SimianGrid [Groups] section from GridCommon.ini.example as per NebadonJustin Clark-Casey (justincc)2010-06-181-8/+0
| | | | this is only used by SimianGrid and is now in SimianGrid.ini
* GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto2010-05-071-0/+6
| | | | | | home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
* Updates to config files for groupsunknown2010-04-041-0/+6
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* * Friends out connector completed. Grid login retrieves friends correctly.Diva Canto2010-02-261-0/+7
| | | | * Added friends configs to grid .inis
* Assorted bug fixes related to hyperlinkingDiva Canto2010-01-311-0/+1
|
* Updated configs.Diva Canto2010-01-131-0/+6
|
* Successfully logged into a grid.Diva Canto2010-01-031-0/+18
|
* Really make module port selection work. Implement port setting inMelanie2009-10-211-0/+4
| | | | LLProxyLoginModule.
* change default ports for inventory and grid connectors in example .ini files ↵Justin Clark-Casey (justincc)2009-10-051-2/+2
| | | | | | to 8003 to match the ROBUST default altered wiki page to reflect this
* MOre streams closed. Corrected word in GridCommon.ini.exampleDiva Canto2009-10-031-1/+1
|
* Corrected the port number to 8001 in the test client and grid ini.Diva Canto2009-09-261-1/+1
|
* Finished spec-ing the .inis for the new grid service modules.Diva Canto2009-09-261-0/+5
|
* * minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey2009-07-101-2/+3
| | | | | | | | asset where appropriate * Send debug level notice to console if a user fails authentication
* Heart surgery no.2: the inventory service hooks. diva2009-06-101-40/+18
| | | | | | | Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
* Updating the flotsam asset cache. Thank you, mcortez!Melanie Thielker2009-06-081-23/+30
| | | | | | Fixes Mantis #3784
* Added Flotsam's cache config vars to configuration. Made it the default in ↵diva2009-06-061-11/+26
| | | | grided sims. Made Cenome cache the default in standalone sims. More splitting in ini files, invisible to the user.
* Fixed placement of optional configs for CenomeAssetCache. Thank you ImazeR.diva2009-06-041-7/+9
|
* Thank you Imaze Rhiano for a patch that implements Cenome Memory Asset Cache ↵Dahlia Trimble2009-06-031-0/+8
| | | | | | | | (Mantis #3759) See the files: bin/config-include/GridCommon.ini.example and bin/config-include/StandaloneCommon.ini.example to configure and enable this caching method.
* revert r9765 due to too many errors on some compilers. Affects Mantis #3759Dahlia Trimble2009-06-031-9/+0
|