1
0

Robust.HG.ini.example 39 KB

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