Robust.HG.ini.example 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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. ; * The startup section lists all the connectors to start up in this server
  13. ; * instance. This may be only one, or it may be the entire server suite.
  14. ; * Multiple connectors should be separated by commas.
  15. ; *
  16. ; * These are the IN connectors the server uses, the in connectors
  17. ; * read this config file and load the needed service and database connectors
  18. ; *
  19. ; * The full syntax of a connector string is:
  20. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  21. ; *
  22. [Startup]
  23. [ServiceList]
  24. AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  25. InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  26. VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  27. GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector"
  28. GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  29. AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  30. OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  31. AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  32. LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  33. PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  34. UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  35. GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  36. FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  37. MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  38. MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  39. ;; Additions for Hypergrid
  40. GatekeeperServiceInConnector = "8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector"
  41. UserAgentServerConnector = "8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector"
  42. HeloServiceInConnector = "8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
  43. HGFriendsServerConnector = "8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector"
  44. InstantMessageServerConnector = "8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector"
  45. HGInventoryServiceConnector = "HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  46. HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  47. ;; Additions for other add-on modules. For example:
  48. ;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector"
  49. ; * This is common for all services, it's the network setup for the entire
  50. ; * server instance, if none is specified above
  51. ; *
  52. [Network]
  53. port = 8003
  54. ; HTTPS for "Out of band" management applications such as the remote admin
  55. ; module. May specify https_main = True to make the main http server
  56. ; use https or "False" to make the main server HTTP
  57. ; https_main = False
  58. ;
  59. ; Create https_listener = "True" will create a listener on the port
  60. ; specified. Provide the path to your server certificate along with it's
  61. ; password
  62. ; https_listener = False
  63. ;
  64. ; Set our listener to this port
  65. ; https_port = 0
  66. ;
  67. ; Path to X509 certificate
  68. ; cert_path = "path/to/cert.p12"
  69. ;
  70. ; Password for cert
  71. ; cert_pass = "password"
  72. ; * The following are for the remote console
  73. ; * They have no effect for the local or basic console types
  74. ; * Leave commented to diable logins to the console
  75. ;ConsoleUser = Test
  76. ;ConsolePass = secret
  77. ;ConsolePort = 0
  78. [DatabaseService]
  79. StorageProvider = "OpenSim.Data.MySQL.dll"
  80. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  81. ; * As an example, the below configuration precisely mimicks the legacy
  82. ; * asset server. It is read by the asset IN connector (defined above)
  83. ; * and it then loads the OUT connector (a local database module). That,
  84. ; * in turn, reads the asset loader and database connection information
  85. ; *
  86. [AssetService]
  87. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  88. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  89. AssetLoaderArgs = "./assets/AssetSets.xml"
  90. ; * This configuration loads the inventory server modules. It duplicates
  91. ; * the function of the legacy inventory server
  92. ; *
  93. [InventoryService]
  94. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  95. ; * This is the new style grid service.
  96. ; * "Realm" is the table that is used for user lookup.
  97. ; * It defaults to "regions", which uses the legacy tables
  98. ; *
  99. [GridService]
  100. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  101. HypergridLinker = true
  102. ; Realm = "regions"
  103. ; AllowDuplicateNames = "True"
  104. ;; Perform distance check for the creation of a linked region
  105. ; Check4096 = "True"
  106. ;; Needed to display non-default map tile images for linked regions
  107. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  108. ;; Directory for map tile images of linked regions
  109. ; MapTileDirectory = "./maptiles"
  110. ;; Next, we can specify properties of regions, including default and fallback regions
  111. ;; The syntax is: Region_<RegionName> = "<flags>"
  112. ;; or: Region_<RegionID> = "<flags>"
  113. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  114. ;; For example:
  115. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  116. ; (replace spaces with underscore)
  117. ;; Allow Hyperlinks to be created at the console
  118. HypergridLinker = true
  119. Gatekeeper = "http://127.0.0.1:8002"
  120. ; * This is the configuration for the freeswitch server in grid mode
  121. [FreeswitchService]
  122. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  123. ;; The IP address of your FreeSWITCH server.
  124. ;; This address must be reachable by viewers.
  125. ; ServerAddress = 127.0.0.1
  126. ;; The following configuration parameters are optional
  127. ;; By default, this is the same as the ServerAddress
  128. ; Realm = 127.0.0.1
  129. ;; By default, this is the same as the ServerAddress on port 5060
  130. ; SIPProxy = 127.0.0.1:5060
  131. ;; Default is 5000ms
  132. ; DefaultTimeout = 5000
  133. ;; The dial plan context. Default is "default"
  134. ; Context = default
  135. ;; Currently unused
  136. ; UserName = freeswitch
  137. ;; Currently unused
  138. ; Password = password
  139. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  140. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  141. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  142. ;; production at your own risk
  143. ; EchoServer = 127.0.0.1
  144. ; EchoPort = 50505
  145. ; AttemptSTUN = false
  146. ; * This is the new style authentication service. Currently, only MySQL
  147. ; * is implemented.
  148. ; *
  149. [AuthenticationService]
  150. ; for the server connector
  151. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  152. ; Realm = "useraccounts"
  153. ;; Allow the service to process HTTP getauthinfo calls.
  154. ;; Default is false.
  155. ; AllowGetAuthInfo = false
  156. ;; Allow the service to process HTTP setauthinfo calls.
  157. ;; Default is false.
  158. ; AllowSetAuthInfo = false
  159. ;; Allow the service to process HTTP setpassword calls.
  160. ;; Default is false.
  161. ; AllowSetPassword = false
  162. [OpenIdService]
  163. ; for the server connector
  164. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  165. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  166. ; * This is the new style user service.
  167. ; * "Realm" is the table that is used for user lookup.
  168. ; * It defaults to "useraccounts", which uses the new style.
  169. ; * Realm = "users" will use the legacy tables as an authentication source
  170. ; *
  171. [UserAccountService]
  172. ; for the server connector
  173. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  174. ; Realm = "useraccounts"
  175. ; These are for creating new accounts by the service
  176. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  177. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  178. GridService = "OpenSim.Services.GridService.dll:GridService"
  179. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  180. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  181. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  182. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  183. ;; Default is false
  184. CreateDefaultAvatarEntries = true
  185. ;; Allow the service to process HTTP createuser calls.
  186. ;; Default is false.
  187. ; AllowCreateUser = false
  188. ;; Allow the service to process HTTP setaccount calls.
  189. ;; Default is false.
  190. ; AllowSetAccount = false
  191. [GridUserService]
  192. ; for the server connector
  193. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  194. [PresenceService]
  195. ; for the server connector
  196. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  197. [AvatarService]
  198. ; for the server connector
  199. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  200. [FriendsService]
  201. ; for the server connector
  202. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  203. [LibraryService]
  204. LibraryName = "OpenSim Library"
  205. DefaultLibrary = "./inventory/Libraries.xml"
  206. [LoginService]
  207. ; for the server connector
  208. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  209. ; for the service
  210. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  211. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  212. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  213. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  214. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  215. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  216. GridService = "OpenSim.Services.GridService.dll:GridService"
  217. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  218. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  219. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  220. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  221. ;; Ask co-operative viewers to use a different currency name
  222. ;Currency = ""
  223. WelcomeMessage = "Welcome, Avatar!"
  224. AllowRemoteSetLoginLevel = "false"
  225. ; For V2 map
  226. MapTileURL = "http://127.0.0.1:8002";
  227. ; For V2/3 Web Profiles
  228. ; Work in progress: The ProfileServerURL/OpenIDServerURL are
  229. ; being used in a development viewer as support for webprofiles
  230. ; is being developed across the componets
  231. ;
  232. ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
  233. ;
  234. ; For V2/V3 webapp authentication SSO
  235. ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
  236. ; If you run this login server behind a proxy, set this to true
  237. ; HasProxy = false
  238. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  239. ; CHANGE THIS
  240. GatekeeperURI = "http://127.0.0.1:8002"
  241. SRV_HomeURI = "http://127.0.0.1:8002"
  242. SRV_InventoryServerURI = "http://127.0.0.1:8002"
  243. SRV_AssetServerURI = "http://127.0.0.1:8002"
  244. SRV_ProfileServerURI = "http://127.0.0.1:8002"
  245. SRV_FriendsServerURI = "http://127.0.0.1:8002"
  246. SRV_IMServerURI = "http://127.0.0.1:8002"
  247. ;; Regular expressions for controlling which client versions are accepted/denied.
  248. ;; An empty string means nothing is checked.
  249. ;;
  250. ;; Example 1: allow only these 3 types of clients (any version of them)
  251. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  252. ;;
  253. ;; Example 2: allow all clients except these
  254. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  255. ;;
  256. ;; Note that these are regular expressions, so every character counts.
  257. ;; Also note that this is very weak security and should not be trusted as a reliable means
  258. ;; for keeping bad clients out; modified clients can fake their identifiers.
  259. ;;
  260. ;;
  261. ;AllowedClients = ""
  262. ;DeniedClients = ""
  263. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  264. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  265. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  266. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  267. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  268. ;; Options are
  269. ;; "none" no DST
  270. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  271. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  272. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  273. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  274. [MapImageService]
  275. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  276. ; Set this if you want to change the default
  277. ; TilesStoragePath = "maptiles"
  278. ;
  279. ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002),
  280. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  281. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  282. ;
  283. ; Additionally, if you run this server behind a proxy, set this to true
  284. ; HasProxy = false
  285. [GridInfoService]
  286. ; These settings are used to return information on a get_grid_info call.
  287. ; Client launcher scripts and third-party clients make use of this to
  288. ; autoconfigure the client and to provide a nice user experience. If you
  289. ; want to facilitate that, you should configure the settings here according
  290. ; to your grid or standalone setup.
  291. ;
  292. ; See http://opensimulator.org/wiki/GridInfo
  293. ; login uri: for grid this is the login server URI
  294. login = http://127.0.0.1:8002/
  295. ; long grid name: the long name of your grid
  296. gridname = "the lost continent of hippo"
  297. ; short grid name: the short name of your grid
  298. gridnick = "hippogrid"
  299. ; login page: optional: if it exists it will be used to tell the client to use
  300. ; this as splash page
  301. ;welcome = http://127.0.0.1/welcome
  302. ; helper uri: optional: if it exists if will be used to tell the client to use
  303. ; this for all economy related things
  304. ;economy = http://127.0.0.1:8002/
  305. ; web page of grid: optional: page providing further information about your grid
  306. ;about = http://127.0.0.1/about/
  307. ; account creation: optional: page providing further information about obtaining
  308. ; a user account on your grid
  309. ;register = http://127.0.0.1/register
  310. ; help: optional: page providing further assistance for users of your grid
  311. ;help = http://127.0.0.1/help
  312. ; password help: optional: page providing password assistance for users of your grid
  313. ;password = http://127.0.0.1/password
  314. ; HG address of the gatekeeper, if you have one
  315. ; this is the entry point for all the regions of the world
  316. ; gatekeeper = http://127.0.0.1:8002/
  317. ; HG user domain, if you have one
  318. ; this is the entry point for all user-related HG services
  319. ; uas = http://127.0.0.1:8002/
  320. [GatekeeperService]
  321. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  322. ;; for the service
  323. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  324. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  325. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  326. GridService = "OpenSim.Services.GridService.dll:GridService"
  327. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  328. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  329. ; how does the outside world reach me? This acts as public key too.
  330. ; CHANGE THIS
  331. ExternalName = "http://127.0.0.1:8002"
  332. ; Does this grid allow incoming links to any region in it?
  333. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  334. AllowTeleportsToAnyRegion = true
  335. ; If you run this gatekeeper server behind a proxy, set this to true
  336. ; HasProxy = false
  337. ;; Regular expressions for controlling which client versions are accepted/denied.
  338. ;; An empty string means nothing is checked.
  339. ;;
  340. ;; Example 1: allow only these 3 types of clients (any version of them)
  341. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  342. ;;
  343. ;; Example 2: allow all clients except these
  344. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  345. ;;
  346. ;; Note that these are regular expressions, so every character counts.
  347. ;; Also note that this is very weak security and should not be trusted as a reliable means
  348. ;; for keeping bad clients out; modified clients can fake their identifiers.
  349. ;;
  350. ;;
  351. ;AllowedClients = ""
  352. ;DeniedClients = ""
  353. ;; Are foreign visitors allowed?
  354. ;ForeignAgentsAllowed = true
  355. ;;
  356. ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
  357. ;; Leave blank or commented for no exceptions.
  358. ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
  359. ;;
  360. ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
  361. ;; Leave blank or commented for no exceptions.
  362. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
  363. [UserAgentService]
  364. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  365. ;; for the service
  366. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  367. GridService = "OpenSim.Services.GridService.dll:GridService"
  368. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  369. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  370. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  371. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  372. ; If you run this user agent server behind a proxy, set this to true
  373. ; HasProxy = false
  374. ;; If you separate the UserAgentService from the LoginService, set this to
  375. ;; the IP address of the machine where your LoginService is
  376. ;LoginServerIP = "127.0.0.1"
  377. ; User level required to be contacted from other grids
  378. ;LevelOutsideContacts = 0
  379. ;; Restrictions on destinations of local users.
  380. ;; Are local users allowed to visit other grids?
  381. ;; What user level? Use variables of this forrm:
  382. ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
  383. ;; (the default is true)
  384. ;; For example:
  385. ; ForeignTripsAllowed_Level_0 = false
  386. ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
  387. ;;
  388. ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
  389. ;; Leave blank or commented for no exceptions.
  390. ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
  391. ;;
  392. ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
  393. ;; Leave blank or commented for no exceptions.
  394. ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
  395. ; * The interface that local users get when they are in other grids.
  396. ; * This restricts the inventory operations while in other grids.
  397. ; * Still not completely safe, especially if users perform inventory operations
  398. ; * while in those grids. The more the user accesses his/her inventory, the more
  399. ; * those simulators will know about the user's inventory.
  400. ; *
  401. [HGInventoryService]
  402. ; For the InventoryServiceInConnector
  403. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
  404. ;; alternatives:
  405. ;; HG1.5, more permissive, not recommended, but still supported
  406. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  407. ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
  408. ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  409. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  410. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  411. HomeURI = "http://127.0.0.1:8002"
  412. ; * The interface that local users get when they are in other grids.
  413. ; * This restricts the access that the rest of the world has to
  414. ; * the assets of this world.
  415. ; *
  416. [HGAssetService]
  417. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  418. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  419. HomeURI = "http://127.0.0.1:8002"
  420. ;; The asset types that this grid can export to / import from other grids.
  421. ;; Comma separated.
  422. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  423. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  424. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  425. ;;
  426. ;; Leave blank or commented if you don't want to apply any restrictions.
  427. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  428. ;; of scripts, like so:
  429. ; DisallowExport ="LSLText"
  430. ; DisallowImport ="LSLBytecode"
  431. [HGFriendsService]
  432. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
  433. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  434. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  435. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  436. GridService = "OpenSim.Services.GridService.dll:GridService"
  437. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  438. [HGInstantMessageService]
  439. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  440. GridService = "OpenSim.Services.GridService.dll:GridService"
  441. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  442. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  443. ; This should always be true in the Robust config
  444. InGatekeeper = True
  445. [Messaging]
  446. ; If you have an Offline IM server, set the vars in this section, so that
  447. ; incomming IMs to local users from foreign grids can be saved
  448. ;
  449. ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {}
  450. ;; URL of web service for offline message storage
  451. ; OfflineMessageURL = http://yourserver/Offline.php
  452. ;; Control whether group messages are forwarded to offline users.
  453. ;; Default is true.
  454. ;; This applies to the core groups module (Flotsam) only.
  455. ; ForwardOfflineGroupMessages = true