Robust.HG.ini.example 24 KB

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