Robust.HG.ini.example 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  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 diable 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. ;; FSAsset 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. ;; Original service can be checked if FSAssets can not find an asset
  223. ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
  224. ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
  225. ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
  226. ;DaysBetweenAccessTimeUpdates = 30
  227. ;; Should FSAssets print read/write stats to the robust console, default is true
  228. ;ShowConsoleStats = true
  229. ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
  230. ;StorageProvider = ""
  231. ;ConnectionString = ""
  232. ;Realm = "fsassets"
  233. ;; The following are common to both the default asset service and FSAsset service
  234. ;; Common asset service options
  235. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  236. AssetLoaderArgs = "./assets/AssetSets.xml"
  237. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  238. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  239. ; This only applies to maptiles served via the version 1 viewer mechanisms
  240. ; Default is false
  241. AllowRemoteDelete = false
  242. ; Allow all assets to be remotely deleted.
  243. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  244. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  245. ; If set to true, AllowRemoteDelete = true is required as well.
  246. ; Default is false.
  247. AllowRemoteDeleteAllTypes = false
  248. ; * This configuration loads the inventory server modules. It duplicates
  249. ; * the function of the legacy inventory server
  250. ; *
  251. [InventoryService]
  252. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  253. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  254. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  255. AllowDelete = true
  256. ; * This is the new style grid service.
  257. ; * "Realm" is the table that is used for user lookup.
  258. ; * It defaults to "regions", which uses the legacy tables
  259. ; *
  260. [GridService]
  261. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  262. ; Realm = "regions"
  263. ; AllowDuplicateNames = ""
  264. ;; Perform distance check for the creation of a linked region
  265. ; Check4096 = "True"
  266. ;; Needed to display non-default map tile images for linked regions
  267. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  268. ;; Directory for map tile images of linked regions
  269. ; MapTileDirectory = "./maptiles"
  270. ;; Next, we can specify properties of regions, including default and fallback regions
  271. ;; The syntax is: Region_<RegionName> = "<flags>"
  272. ;; or: Region_<RegionID> = "<flags>"
  273. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  274. ;;
  275. ;; 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.)
  276. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  277. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  278. ;; an explicit region.
  279. ;;
  280. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  281. ;; region will be used.
  282. ;;
  283. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  284. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  285. ;;
  286. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  287. ;;
  288. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  289. ;;
  290. ;; Example specification:
  291. ; Region_Welcome_Area = "DefaultRegion, DefaultHGRegion"
  292. ; (replace spaces with underscore)
  293. ;; Allow Hyperlinks to be created at the console
  294. HypergridLinker = true
  295. ;; Allow supporting viewers to export content
  296. ;; Set to false to prevent export
  297. ExportSupported = true
  298. ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
  299. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  300. ; * This is the configuration for the freeswitch server in grid mode
  301. [FreeswitchService]
  302. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  303. ;; The IP address of your FreeSWITCH server.
  304. ;; This address must be reachable by viewers.
  305. ; ServerAddress = 127.0.0.1
  306. ;; The following configuration parameters are optional
  307. ;; By default, this is the same as the ServerAddress
  308. ; Realm = 127.0.0.1
  309. ;; By default, this is the same as the ServerAddress on port 5060
  310. ; SIPProxy = 127.0.0.1:5060
  311. ;; Default is 5000ms
  312. ; DefaultTimeout = 5000
  313. ;; The dial plan context. Default is "default"
  314. ; Context = default
  315. ;; Currently unused
  316. ; UserName = freeswitch
  317. ;; Currently unused
  318. ; Password = password
  319. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  320. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  321. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  322. ;; production at your own risk
  323. ; EchoServer = 127.0.0.1
  324. ; EchoPort = 50505
  325. ; AttemptSTUN = false
  326. ; * This is the new style authentication service. Currently, only MySQL
  327. ; * is implemented.
  328. ; *
  329. [AuthenticationService]
  330. ; for the server connector
  331. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  332. ; Realm = "auth"
  333. ;; Allow the service to process HTTP getauthinfo calls.
  334. ;; Default is false.
  335. ; AllowGetAuthInfo = false
  336. ;; Allow the service to process HTTP setauthinfo calls.
  337. ;; Default is false.
  338. ; AllowSetAuthInfo = false
  339. ;; Allow the service to process HTTP setpassword calls.
  340. ;; Default is false.
  341. ; AllowSetPassword = false
  342. [OpenIdService]
  343. ; for the server connector
  344. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  345. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  346. ; * This is the new style user service.
  347. ; * "Realm" is the table that is used for user lookup.
  348. ; * It defaults to "UserAccounts", which uses the new style.
  349. ; * Realm = "users" will use the legacy tables as an authentication source
  350. ; *
  351. [UserAccountService]
  352. ; for the server connector
  353. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  354. ; Realm = "UserAccounts"
  355. ; These are for creating new accounts by the service
  356. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  357. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  358. GridService = "OpenSim.Services.GridService.dll:GridService"
  359. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  360. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  361. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  362. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  363. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  364. ;; Default is false
  365. CreateDefaultAvatarEntries = true
  366. ;; Allow the service to process HTTP createuser calls.
  367. ;; Default is false.
  368. ; AllowCreateUser = false
  369. ;; Allow the service to process HTTP setaccount calls.
  370. ;; Default is false.
  371. ; AllowSetAccount = false
  372. [GridUserService]
  373. ; for the server connector
  374. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  375. [AgentPreferencesService]
  376. ; for the server connector
  377. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
  378. [PresenceService]
  379. ; for the server connector
  380. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  381. [AvatarService]
  382. ; for the server connector
  383. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  384. [FriendsService]
  385. ; for the server connector
  386. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  387. [EstateService]
  388. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  389. [LibraryService]
  390. LibraryName = "OpenSim Library"
  391. DefaultLibrary = "./inventory/Libraries.xml"
  392. [LoginService]
  393. ; for the server connector
  394. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  395. ; for the service
  396. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  397. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  398. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  399. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  400. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  401. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  402. GridService = "OpenSim.Services.GridService.dll:GridService"
  403. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  404. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  405. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  406. ; The minimum user level required for a user to be able to login. 0 by default
  407. ; If you disable a particular user's account then you can set their login level below this number.
  408. ; You can also change this level from the console though these changes will not be persisted.
  409. ; MinLoginLevel = 0
  410. ;; for hypergrid
  411. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  412. ; This inventory service will be used to initialize the user's inventory
  413. HGInventoryServicePlugin = "[email protected]:HGSuitcaseInventoryService"
  414. ; NOTE: HGInventoryServiceConstructorArg is deprecated. For now it will work, but see above
  415. ; for the correct method if passing additional arguments.
  416. ;; end hypergrid
  417. ; Ask co-operative viewers to use a different currency name
  418. ;Currency = ""
  419. ;; Set minimum fee to publish classified
  420. ; ClassifiedFee = 0
  421. WelcomeMessage = "Welcome, Avatar!"
  422. AllowRemoteSetLoginLevel = "false"
  423. ; For V2 map
  424. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  425. ; Url to search service
  426. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  427. ; For V3 destination guide
  428. ; DestinationGuide = "${Const|BaseURL}/guide"
  429. ; For V3 avatar picker (( work in progress ))
  430. ; AvatarPicker = "${Const|BaseURL}/avatars"
  431. ; If you run this login server behind a proxy, set this to true
  432. ; HasProxy = false
  433. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  434. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  435. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  436. SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  437. SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  438. SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  439. SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  440. SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  441. SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  442. SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  443. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  444. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  445. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  446. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  447. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  448. ;; Options are
  449. ;; "none" no DST
  450. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  451. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  452. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  453. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  454. ;; If the region requested at login is not found and there are no default or fallback regions
  455. ;; online or defined in section [GridService], try to send user to any region online
  456. ;; this similar to legacy (was disabled on 0.9.2.0)
  457. ;; you should set this to false and define regions with Default and possible Fallback flags
  458. ;; With this option set to true, users maybe sent to regions they where not supposed to be, or even know about
  459. AllowLoginFallbackToAnyRegion = false
  460. ;Basic Login Service Dos Protection Tweaks
  461. ;;
  462. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  463. ;; 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
  464. ;; get around this basic DOS protection.
  465. ;DOSAllowXForwardedForHeader = false
  466. ;;
  467. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  468. ;DOSRequestTimeFrameMS = 10000
  469. ;;
  470. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  471. ;DOSMaxRequestsInTimeFrame = 5
  472. ;;
  473. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  474. ;DOSForgiveClientAfterMS = 120000
  475. ;;
  476. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  477. ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService]
  478. ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC"
  479. [MapImageService]
  480. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  481. ; Set this if you want to change the default
  482. ; TilesStoragePath = "maptiles"
  483. ;
  484. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  485. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  486. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  487. ;
  488. ; Additionally, if you run this server behind a proxy, set this to true
  489. ; HasProxy = false
  490. [GridInfoService]
  491. ; These settings are used to return information on a get_grid_info call.
  492. ; Client launcher scripts and third-party clients make use of this to
  493. ; autoconfigure the client and to provide a nice user experience. If you
  494. ; want to facilitate that, you should configure the settings here according
  495. ; to your grid or standalone setup.
  496. ;
  497. ; See http://opensimulator.org/wiki/GridInfo
  498. ; login uri: for grid this is the login server URI
  499. login = ${Const|BaseURL}:${Const|PublicPort}/
  500. ; long grid name: the long name of your grid
  501. gridname = "the lost continent of hippo"
  502. ; short grid name: the short name of your grid
  503. gridnick = "hippogrid"
  504. ; login page: optional: if it exists it will be used to tell the client to use
  505. ; this as splash page
  506. ;welcome = ${Const|BaseURL}/welcome
  507. ; helper uri: optional: if it exists it will be used to tell the client to use
  508. ; this for all economy related things
  509. ;economy = ${Const|BaseURL}/economy
  510. ; web page of grid: optional: page providing further information about your grid
  511. ;about = ${Const|BaseURL}/about
  512. ; account creation: optional: page providing further information about obtaining
  513. ; a user account on your grid
  514. ;register = ${Const|BaseURL}/register
  515. ; help: optional: page providing further assistance for users of your grid
  516. ;help = ${Const|BaseURL}/help
  517. ; password help: optional: page providing password assistance for users of your grid
  518. ;password = ${Const|BaseURL}/password
  519. ; HG address of the gatekeeper, if you have one
  520. ; this is the entry point for all the regions of the world
  521. ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/
  522. ; a http page for grid status
  523. ;GridStatus = ${Const|BaseURL}:${Const|PublicPort}/GridStatus
  524. ; a RSS page for grid status
  525. ;GridStatusRSS = ${Const|BaseURL}:${Const|PublicPort}/GridStatusRSS
  526. [GatekeeperService]
  527. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  528. ;; for the service
  529. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  530. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  531. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  532. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  533. GridService = "OpenSim.Services.GridService.dll:GridService"
  534. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  535. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  536. ; how does the outside world reach me? This acts as public key too.
  537. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  538. ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}"
  539. ; Does this grid allow incoming links to any region in it?
  540. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  541. AllowTeleportsToAnyRegion = true
  542. ; If you run this gatekeeper server behind a proxy, set this to true
  543. ; HasProxy = false
  544. ;; Are foreign visitors allowed?
  545. ;ForeignAgentsAllowed = true
  546. ;;
  547. ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
  548. ;; Leave blank or commented for no exceptions.
  549. ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
  550. ;;
  551. ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
  552. ;; Leave blank or commented for no exceptions.
  553. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
  554. ;; Allow banning via hashed MAC must be set in both [GatekeeperService] and [LoginService]
  555. ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC"
  556. [UserAgentService]
  557. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  558. ;; for the service
  559. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  560. GridService = "OpenSim.Services.GridService.dll:GridService"
  561. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  562. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  563. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  564. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  565. ; If you run this user agent server behind a proxy, set this to true
  566. ; HasProxy = false
  567. ;; If you separate the UserAgentService from the LoginService, set this to
  568. ;; the IP address of the machine where your LoginService is
  569. ;LoginServerIP = "127.0.0.1"
  570. ; User level required to be contacted from other grids
  571. ;LevelOutsideContacts = 0
  572. ;; Restrictions on destinations of local users.
  573. ;; Are local users allowed to visit other grids?
  574. ;; What user level? Use variables of this forrm:
  575. ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
  576. ;; (the default is true)
  577. ;; For example:
  578. ; ForeignTripsAllowed_Level_0 = false
  579. ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
  580. ;;
  581. ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
  582. ;; Leave blank or commented for no exceptions.
  583. ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
  584. ;;
  585. ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
  586. ;; Leave blank or commented for no exceptions.
  587. ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
  588. ;; This variable controls what is exposed to profiles of local users
  589. ;; as seen from outside of this grid. Leave it uncommented for exposing
  590. ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
  591. ;; to block this info from being exposed.
  592. ; ShowUserDetailsInHGProfile = True
  593. ; * The interface that local users get when they are in other grids.
  594. ; * This restricts the inventory operations while in other grids.
  595. ; * Still not completely safe, especially if users perform inventory operations
  596. ; * while in those grids. The more the user accesses his/her inventory, the more
  597. ; * those simulators will know about the user's inventory.
  598. ; *
  599. [HGInventoryService]
  600. ; For the InventoryServiceInConnector
  601. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
  602. ;; alternatives:
  603. ;; HG1.5, more permissive, not recommended, but still supported
  604. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  605. ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
  606. ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  607. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  608. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  609. ; HGInventoryService is a public-facing inventory service that allows users to
  610. ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector.
  611. ; Hence, if the user has set up authentication in [Network] to protect their private services
  612. ; make sure it is not set here.
  613. AuthType = None
  614. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  615. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  616. ; * The interface that local users get when they are in other grids.
  617. ; * This restricts the access that the rest of the world has to
  618. ; * the assets of this world.
  619. ; *
  620. [HGAssetService]
  621. ;; Use the second option if you have FSAsset service enabled
  622. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  623. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFSAssetService"
  624. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  625. ; HGAssetService is a public-facing service that allows users to
  626. ; read and create assets when on another grid. This reuses the general asset service connector.
  627. ; Hence, if the user has set up authentication in [Network] to protect their private services
  628. ; make sure it is overriden for this public service.
  629. AuthType = None
  630. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  631. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  632. ;; The asset types that this grid can export to / import from other grids.
  633. ;; Comma separated.
  634. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  635. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  636. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  637. ;;
  638. ;; Leave blank or commented if you don't want to apply any restrictions.
  639. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  640. ;; of scripts, like so:
  641. ; DisallowExport ="LSLText"
  642. ; DisallowImport ="LSLBytecode"
  643. [HGFriendsService]
  644. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
  645. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  646. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  647. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  648. GridService = "OpenSim.Services.GridService.dll:GridService"
  649. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  650. [HGInstantMessageService]
  651. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  652. GridService = "OpenSim.Services.GridService.dll:GridService"
  653. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  654. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  655. ; This should always be true in the Robust config
  656. InGatekeeper = True
  657. [Messaging]
  658. ; OfflineIM
  659. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  660. [Groups]
  661. ;; for the HG Groups service
  662. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  663. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  664. ;; What is the HomeURI of users associated with this grid?
  665. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  666. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  667. ;; end hypergrid
  668. ;; Sets the maximum number of groups an agent may join
  669. ; MaxAgentGroups = 42
  670. [UserProfilesService]
  671. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  672. Enabled = false
  673. ;; Configure this for separate profiles database
  674. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  675. ;; Realm = UserProfiles
  676. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  677. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  678. [BakedTextureService]
  679. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  680. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  681. BaseDirectory = "./bakes"
  682. [MuteListService]
  683. LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"