Robust.HG.ini.example 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. ; * Run
  2. ; * $ Robust.exe -inifile Robust.HG.ini
  3. ; *
  4. ; * Configurations for enabling HG1.5
  5. ; *
  6. ; * HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
  7. ; * OpenSim.Server.Handlers.dll:UserAgentService
  8. ; * Additional OpenSim.Server.Handlers.dll:AssetServiceConnector and
  9. ; * OpenSim.Server.Handlers.dll:XInventoryInConnector
  10. ; * are started in port 8002, outside the firewall
  11. ; *
  12. ; **
  13. ; *
  14. ; * The Const section allows us to define some basic information that we
  15. ; * will use throughout our configuration. We will provide examples for
  16. ; * setting the base url of the Robust server and the public and private ports
  17. ; * it uses. Changing the values of the constants will set the operating
  18. ; * parameters thoughout the configuration. Other constants that may prove
  19. ; * to be useful may be added to the followin section. They may be
  20. ; * referenced anywhere in the configuration by using ${Const|Name}. One
  21. ; * such use is providing a base path for setting locations that Robust
  22. ; * uses to write data.
  23. ; *
  24. [Const]
  25. ; The URL of the Robust server
  26. BaseURL = "http://127.0.0.1"
  27. ; The public port of the Robust server
  28. PublicPort = "8002"
  29. ; The private port of the Robust server
  30. PrivatePort = "8003"
  31. ; * The startup section lists all the connectors to start up in this server
  32. ; * instance. This may be only one, or it may be the entire server suite.
  33. ; * Multiple connectors should be separated by commas.
  34. ; *
  35. ; * These are the IN connectors the server uses, the in connectors
  36. ; * read this config file and load the needed service and database connectors
  37. ; *
  38. ; * The full syntax of a connector string is:
  39. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  40. ; *
  41. [Startup]
  42. ; Place to create a PID file
  43. ; If no path if specified then a PID file is not created.
  44. ; PIDFile = "/tmp/Robust.exe.pid"
  45. ; Plugin Registry Location
  46. ; Set path to directory for plugin registry. Information
  47. ; about the registered repositories and installed plugins
  48. ; will be stored here
  49. ; The Robust.exe process must have R/W access to the location
  50. RegistryLocation = "."
  51. ; Modular configurations
  52. ; Set path to directory for modular ini files...
  53. ; The Robust.exe process must have R/W access to the location
  54. ConfigDirectory = "robust-include"
  55. ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
  56. ConsoleHistoryFileEnabled = true
  57. ; The history file can be just a filename (relative to OpenSim's bin/ directory
  58. ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
  59. ConsoleHistoryFile = "RobustConsoleHistory.txt"
  60. ; How many lines of command history should we keep? (default is 100)
  61. ConsoleHistoryFileLines = 100
  62. [ServiceList]
  63. AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  64. InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  65. ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
  66. ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  67. GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
  68. GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  69. AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  70. OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  71. AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  72. LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  73. PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  74. UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  75. GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  76. AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
  77. FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  78. MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  79. MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  80. ;; Uncomment this if you want offline IM to work
  81. ; OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
  82. ;; Uncomment this if you want Groups V2 to work
  83. ; GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
  84. ;; Uncomment to provide bakes caching
  85. ; BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
  86. ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
  87. ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
  88. ;; Uncomment if you want to have centralized estate data
  89. ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
  90. MuteListConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MuteListServiceConnector"
  91. ;; Additions for Hypergrid
  92. GatekeeperServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector"
  93. UserAgentServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserAgentServerConnector"
  94. HeloServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
  95. HGFriendsServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HGFriendsServerConnector"
  96. InstantMessageServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:InstantMessageServerConnector"
  97. HGInventoryServiceConnector = "HGInventoryService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  98. HGAssetServiceConnector = "HGAssetService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  99. ;; Uncomment this if you want Groups V2, HG to work
  100. ; HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector"
  101. ; * This is common for all services, it's the network setup for the entire
  102. ; * server instance, if none is specified above
  103. ; *
  104. [Network]
  105. port = ${Const|PrivatePort}
  106. ; HTTPS for "Out of band" management applications such as the remote admin
  107. ; module. May specify https_main = True to make the main http server
  108. ; use https or "False" to make the main server HTTP
  109. ; https_main = False
  110. ;
  111. ; Create https_listener = "True" will create a listener on the port
  112. ; specified. Provide the path to your server certificate along with it's
  113. ; password
  114. ; https_listener = False
  115. ;
  116. ; Set our listener to this port
  117. ; https_port = 0
  118. ;
  119. ; Path to X509 certificate
  120. ; cert_path = "path/to/cert.p12"
  121. ;
  122. ; Password for cert
  123. ; cert_pass = "password"
  124. ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
  125. ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
  126. ;; but you want to protect them from unauthorized access.
  127. ; AuthType = "BasicHttpAuthentication"
  128. ; HttpAuthUsername = "some_username"
  129. ; HttpAuthPassword = "some_password"
  130. ;;
  131. ;; AuthType above can be overriden in any of the service sections below by
  132. ; AuthType = "None"
  133. ;; This is useful in cases where you want to protect most of the services,
  134. ;; but unprotect individual services. Username and Password can also be
  135. ;; overriden if you want to use different credentials for the different services.
  136. ;; Hypergrid services are not affected by this; they are publicly available
  137. ;; by design.
  138. ;; By default, scripts are not allowed to call private services via llHttpRequest()
  139. ;; Such calls are detected by the X-SecondLife-Shared HTTP header
  140. ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
  141. ;; (remember scripts can also be in visiting avatar attachments).
  142. ;; This can be overriden in individual private service sections if necessary
  143. AllowllHTTPRequestIn = false
  144. ; * The following are for the remote console
  145. ; * They have no effect for the local or basic console types
  146. ; * Leave commented to diable logins to the console
  147. ;ConsoleUser = Test
  148. ;ConsolePass = secret
  149. ;ConsolePort = 0
  150. [Hypergrid]
  151. ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
  152. ;; This is the address of the external robust server that
  153. ;; runs the UserAgentsService, possibly this server.
  154. ;; For example http://myworld.com:8002
  155. ;; This is a default that can be overwritten in some sections.
  156. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  157. ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
  158. ;; This is the address of the external robust server
  159. ;; that runs the Gatekeeper service, possibly this server.
  160. ;; For example http://myworld.com:8002
  161. ;; This is a default that can be overwritten in some sections.
  162. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  163. [AccessControl]
  164. ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
  165. ;; Bar (|) separated list of viewers which may gain access to the regions.
  166. ;; One can use a substring of the viewer name to enable only certain
  167. ;; versions
  168. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  169. ;; - "Imprudence" has access
  170. ;; - "Imprudence 1.3" has access
  171. ;; - "Imprudence 1.3.1" has no access
  172. ; AllowedClients = ""
  173. ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
  174. ;; Bar (|) separated list of viewers which may not gain access to the regions.
  175. ;; One can use a Substring of the viewer name to disable only certain
  176. ;; versions
  177. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  178. ;; - "Imprudence" has no access
  179. ;; - "Imprudence 1.3" has no access
  180. ;; - "Imprudence 1.3.1" has access
  181. ; DeniedClients = ""
  182. [DatabaseService]
  183. ; PGSQL
  184. ; Uncomment these lines if you want to use PGSQL storage
  185. ; Change the connection string to your db details
  186. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  187. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  188. ; MySQL
  189. ; Uncomment these lines if you want to use MySQL storage
  190. ; Change the connection string to your db details
  191. StorageProvider = "OpenSim.Data.MySQL.dll"
  192. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  193. ; * As an example, the below configuration precisely mimicks the legacy
  194. ; * asset server. It is read by the asset IN connector (defined above)
  195. ; * and it then loads the OUT connector (a local database module). That,
  196. ; * in turn, reads the asset loader and database connection information
  197. ; *
  198. [AssetService]
  199. ;; Choose an asset service (Only one option should be enabled)
  200. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  201. ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
  202. ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
  203. ;; These directories must be on the same physical filesystem
  204. ;BaseDirectory = "./fsassets/data"
  205. ;SpoolDirectory = "./fsassets/tmp"
  206. ;; Original service can be checked if FSAssets can not find an asset
  207. ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
  208. ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
  209. ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
  210. ;DaysBetweenAccessTimeUpdates = 30
  211. ;; Should FSAssets print read/write stats to the robust console, default is true
  212. ;ShowConsoleStats = true
  213. ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
  214. ;StorageProvider = ""
  215. ;ConnectionString = ""
  216. ;Realm = "fsassets"
  217. ;; The following are common to both the default asset service and FSAsset service
  218. ;; Common asset service options
  219. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  220. AssetLoaderArgs = "./assets/AssetSets.xml"
  221. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  222. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  223. ; This only applies to maptiles served via the version 1 viewer mechanisms
  224. ; Default is false
  225. AllowRemoteDelete = false
  226. ; Allow all assets to be remotely deleted.
  227. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  228. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  229. ; If set to true, AllowRemoteDelete = true is required as well.
  230. ; Default is false.
  231. AllowRemoteDeleteAllTypes = false
  232. ; * This configuration loads the inventory server modules. It duplicates
  233. ; * the function of the legacy inventory server
  234. ; *
  235. [InventoryService]
  236. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  237. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  238. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  239. AllowDelete = true
  240. ; * This is the new style grid service.
  241. ; * "Realm" is the table that is used for user lookup.
  242. ; * It defaults to "regions", which uses the legacy tables
  243. ; *
  244. [GridService]
  245. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  246. ; Realm = "regions"
  247. ; AllowDuplicateNames = ""
  248. ;; Perform distance check for the creation of a linked region
  249. ; Check4096 = "True"
  250. ;; Needed to display non-default map tile images for linked regions
  251. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  252. ;; Directory for map tile images of linked regions
  253. ; MapTileDirectory = "./maptiles"
  254. ;; Next, we can specify properties of regions, including default and fallback regions
  255. ;; The syntax is: Region_<RegionName> = "<flags>"
  256. ;; or: Region_<RegionID> = "<flags>"
  257. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  258. ;;
  259. ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.)
  260. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  261. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  262. ;; an explicit region.
  263. ;;
  264. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  265. ;; region will be used.
  266. ;;
  267. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  268. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  269. ;;
  270. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  271. ;;
  272. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  273. ;;
  274. ;; Example specification:
  275. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  276. ; (replace spaces with underscore)
  277. ;; Allow Hyperlinks to be created at the console
  278. HypergridLinker = true
  279. ;; Allow supporting viewers to export content
  280. ;; Set to false to prevent export
  281. ExportSupported = true
  282. ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
  283. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  284. ; * This is the configuration for the freeswitch server in grid mode
  285. [FreeswitchService]
  286. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  287. ;; The IP address of your FreeSWITCH server.
  288. ;; This address must be reachable by viewers.
  289. ; ServerAddress = 127.0.0.1
  290. ;; The following configuration parameters are optional
  291. ;; By default, this is the same as the ServerAddress
  292. ; Realm = 127.0.0.1
  293. ;; By default, this is the same as the ServerAddress on port 5060
  294. ; SIPProxy = 127.0.0.1:5060
  295. ;; Default is 5000ms
  296. ; DefaultTimeout = 5000
  297. ;; The dial plan context. Default is "default"
  298. ; Context = default
  299. ;; Currently unused
  300. ; UserName = freeswitch
  301. ;; Currently unused
  302. ; Password = password
  303. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  304. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  305. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  306. ;; production at your own risk
  307. ; EchoServer = 127.0.0.1
  308. ; EchoPort = 50505
  309. ; AttemptSTUN = false
  310. ; * This is the new style authentication service. Currently, only MySQL
  311. ; * is implemented.
  312. ; *
  313. [AuthenticationService]
  314. ; for the server connector
  315. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  316. ; Realm = "useraccounts"
  317. ;; Allow the service to process HTTP getauthinfo calls.
  318. ;; Default is false.
  319. ; AllowGetAuthInfo = false
  320. ;; Allow the service to process HTTP setauthinfo calls.
  321. ;; Default is false.
  322. ; AllowSetAuthInfo = false
  323. ;; Allow the service to process HTTP setpassword calls.
  324. ;; Default is false.
  325. ; AllowSetPassword = false
  326. [OpenIdService]
  327. ; for the server connector
  328. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  329. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  330. ; * This is the new style user service.
  331. ; * "Realm" is the table that is used for user lookup.
  332. ; * It defaults to "useraccounts", which uses the new style.
  333. ; * Realm = "users" will use the legacy tables as an authentication source
  334. ; *
  335. [UserAccountService]
  336. ; for the server connector
  337. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  338. ; Realm = "useraccounts"
  339. ; These are for creating new accounts by the service
  340. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  341. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  342. GridService = "OpenSim.Services.GridService.dll:GridService"
  343. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  344. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  345. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  346. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  347. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  348. ;; Default is false
  349. CreateDefaultAvatarEntries = true
  350. ;; Allow the service to process HTTP createuser calls.
  351. ;; Default is false.
  352. ; AllowCreateUser = false
  353. ;; Allow the service to process HTTP setaccount calls.
  354. ;; Default is false.
  355. ; AllowSetAccount = false
  356. [GridUserService]
  357. ; for the server connector
  358. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  359. [AgentPreferencesService]
  360. ; for the server connector
  361. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
  362. [PresenceService]
  363. ; for the server connector
  364. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  365. [AvatarService]
  366. ; for the server connector
  367. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  368. [FriendsService]
  369. ; for the server connector
  370. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  371. [EstateService]
  372. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  373. [LibraryService]
  374. LibraryName = "OpenSim Library"
  375. DefaultLibrary = "./inventory/Libraries.xml"
  376. [LoginService]
  377. ; for the server connector
  378. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  379. ; for the service
  380. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  381. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  382. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  383. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  384. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  385. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  386. GridService = "OpenSim.Services.GridService.dll:GridService"
  387. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  388. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  389. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  390. ; The minimum user level required for a user to be able to login. 0 by default
  391. ; If you disable a particular user's account then you can set their login level below this number.
  392. ; You can also change this level from the console though these changes will not be persisted.
  393. ; MinLoginLevel = 0
  394. ;; for hypergrid
  395. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  396. ; This inventory service will be used to initialize the user's inventory
  397. HGInventoryServicePlugin = "[email protected]:HGSuitcaseInventoryService"
  398. ; NOTE: HGInventoryServiceConstructorArg is deprecated. For now it will work, but see above
  399. ; for the correct method if passing additional arguments.
  400. ;; end hypergrid
  401. ; Ask co-operative viewers to use a different currency name
  402. ;Currency = ""
  403. ;; Set minimum fee to publish classified
  404. ; ClassifiedFee = 0
  405. WelcomeMessage = "Welcome, Avatar!"
  406. AllowRemoteSetLoginLevel = "false"
  407. ; For V2 map
  408. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  409. ; Url to search service
  410. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  411. ; For V3 destination guide
  412. ; DestinationGuide = "${Const|BaseURL}/guide"
  413. ; For V3 avatar picker (( work in progress ))
  414. ; AvatarPicker = "${Const|BaseURL}/avatars"
  415. ; If you run this login server behind a proxy, set this to true
  416. ; HasProxy = false
  417. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  418. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  419. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  420. SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  421. SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  422. SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  423. SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  424. SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  425. SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  426. SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  427. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  428. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  429. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  430. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  431. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  432. ;; Options are
  433. ;; "none" no DST
  434. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  435. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  436. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  437. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  438. ;Basic Login Service Dos Protection Tweaks
  439. ;;
  440. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  441. ;; If you set this to true and you don't have a transparent proxy, it may allow attackers to put random things in the X-Forwarded-For header to
  442. ;; get around this basic DOS protection.
  443. ;DOSAllowXForwardedForHeader = false
  444. ;;
  445. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  446. ;DOSRequestTimeFrameMS = 10000
  447. ;;
  448. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  449. ;DOSMaxRequestsInTimeFrame = 5
  450. ;;
  451. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  452. ;DOSForgiveClientAfterMS = 120000
  453. ;;
  454. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  455. [MapImageService]
  456. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  457. ; Set this if you want to change the default
  458. ; TilesStoragePath = "maptiles"
  459. ;
  460. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  461. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  462. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  463. ;
  464. ; Additionally, if you run this server behind a proxy, set this to true
  465. ; HasProxy = false
  466. [GridInfoService]
  467. ; These settings are used to return information on a get_grid_info call.
  468. ; Client launcher scripts and third-party clients make use of this to
  469. ; autoconfigure the client and to provide a nice user experience. If you
  470. ; want to facilitate that, you should configure the settings here according
  471. ; to your grid or standalone setup.
  472. ;
  473. ; See http://opensimulator.org/wiki/GridInfo
  474. ; login uri: for grid this is the login server URI
  475. login = ${Const|BaseURL}:${Const|PublicPort}/
  476. ; long grid name: the long name of your grid
  477. gridname = "the lost continent of hippo"
  478. ; short grid name: the short name of your grid
  479. gridnick = "hippogrid"
  480. ; login page: optional: if it exists it will be used to tell the client to use
  481. ; this as splash page
  482. ;welcome = ${Const|BaseURL}/welcome
  483. ; helper uri: optional: if it exists it will be used to tell the client to use
  484. ; this for all economy related things
  485. ;economy = ${Const|BaseURL}/economy
  486. ; web page of grid: optional: page providing further information about your grid
  487. ;about = ${Const|BaseURL}/about
  488. ; account creation: optional: page providing further information about obtaining
  489. ; a user account on your grid
  490. ;register = ${Const|BaseURL}/register
  491. ; help: optional: page providing further assistance for users of your grid
  492. ;help = ${Const|BaseURL}/help
  493. ; password help: optional: page providing password assistance for users of your grid
  494. ;password = ${Const|BaseURL}/password
  495. ; HG address of the gatekeeper, if you have one
  496. ; this is the entry point for all the regions of the world
  497. ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/
  498. ; HG user domain, if you have one
  499. ; this is the entry point for all user-related HG services
  500. ; uas = ${Const|BaseURL}:${Const|PublicPort}/
  501. [GatekeeperService]
  502. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  503. ;; for the service
  504. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  505. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  506. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  507. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  508. GridService = "OpenSim.Services.GridService.dll:GridService"
  509. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  510. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  511. ; how does the outside world reach me? This acts as public key too.
  512. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  513. ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}"
  514. ; Does this grid allow incoming links to any region in it?
  515. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  516. AllowTeleportsToAnyRegion = true
  517. ; If you run this gatekeeper server behind a proxy, set this to true
  518. ; HasProxy = false
  519. ;; Are foreign visitors allowed?
  520. ;ForeignAgentsAllowed = true
  521. ;;
  522. ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
  523. ;; Leave blank or commented for no exceptions.
  524. ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
  525. ;;
  526. ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
  527. ;; Leave blank or commented for no exceptions.
  528. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
  529. [UserAgentService]
  530. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  531. ;; for the service
  532. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  533. GridService = "OpenSim.Services.GridService.dll:GridService"
  534. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  535. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  536. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  537. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  538. ; If you run this user agent server behind a proxy, set this to true
  539. ; HasProxy = false
  540. ;; If you separate the UserAgentService from the LoginService, set this to
  541. ;; the IP address of the machine where your LoginService is
  542. ;LoginServerIP = "127.0.0.1"
  543. ; User level required to be contacted from other grids
  544. ;LevelOutsideContacts = 0
  545. ;; Restrictions on destinations of local users.
  546. ;; Are local users allowed to visit other grids?
  547. ;; What user level? Use variables of this forrm:
  548. ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
  549. ;; (the default is true)
  550. ;; For example:
  551. ; ForeignTripsAllowed_Level_0 = false
  552. ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
  553. ;;
  554. ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
  555. ;; Leave blank or commented for no exceptions.
  556. ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
  557. ;;
  558. ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
  559. ;; Leave blank or commented for no exceptions.
  560. ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
  561. ;; This variable controls what is exposed to profiles of local users
  562. ;; as seen from outside of this grid. Leave it uncommented for exposing
  563. ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
  564. ;; to block this info from being exposed.
  565. ; ShowUserDetailsInHGProfile = True
  566. ; * The interface that local users get when they are in other grids.
  567. ; * This restricts the inventory operations while in other grids.
  568. ; * Still not completely safe, especially if users perform inventory operations
  569. ; * while in those grids. The more the user accesses his/her inventory, the more
  570. ; * those simulators will know about the user's inventory.
  571. ; *
  572. [HGInventoryService]
  573. ; For the InventoryServiceInConnector
  574. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
  575. ;; alternatives:
  576. ;; HG1.5, more permissive, not recommended, but still supported
  577. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  578. ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
  579. ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  580. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  581. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  582. ; HGInventoryService is a public-facing inventory service that allows users to
  583. ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector.
  584. ; Hence, if the user has set up authentication in [Network] to protect their private services
  585. ; make sure it is not set here.
  586. AuthType = None
  587. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  588. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  589. ; * The interface that local users get when they are in other grids.
  590. ; * This restricts the access that the rest of the world has to
  591. ; * the assets of this world.
  592. ; *
  593. [HGAssetService]
  594. ;; Use the second option if you have FSAsset service enabled
  595. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  596. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFSAssetService"
  597. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  598. ; HGAssetService is a public-facing service that allows users to
  599. ; read and create assets when on another grid. This reuses the general asset service connector.
  600. ; Hence, if the user has set up authentication in [Network] to protect their private services
  601. ; make sure it is overriden for this public service.
  602. AuthType = None
  603. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  604. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  605. ;; The asset types that this grid can export to / import from other grids.
  606. ;; Comma separated.
  607. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  608. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  609. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  610. ;;
  611. ;; Leave blank or commented if you don't want to apply any restrictions.
  612. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  613. ;; of scripts, like so:
  614. ; DisallowExport ="LSLText"
  615. ; DisallowImport ="LSLBytecode"
  616. [HGFriendsService]
  617. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
  618. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  619. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  620. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  621. GridService = "OpenSim.Services.GridService.dll:GridService"
  622. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  623. [HGInstantMessageService]
  624. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  625. GridService = "OpenSim.Services.GridService.dll:GridService"
  626. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  627. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  628. ; This should always be true in the Robust config
  629. InGatekeeper = True
  630. [Messaging]
  631. ; OfflineIM
  632. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  633. [Groups]
  634. ;; for the HG Groups service
  635. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  636. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  637. ;; What is the HomeURI of users associated with this grid?
  638. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  639. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  640. ;; end hypergrid
  641. ;; Sets the maximum number of groups an agent may join
  642. ; MaxAgentGroups = 42
  643. [UserProfilesService]
  644. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  645. Enabled = false
  646. ;; Configure this for separate profiles database
  647. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  648. ;; Realm = UserProfiles
  649. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  650. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  651. [BakedTextureService]
  652. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  653. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  654. BaseDirectory = "./bakes"
  655. [MuteListService]
  656. LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"