Robust.HG.ini.example 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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. ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector,HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector,8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector,8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector,8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector,8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector,8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  24. ; * This is common for all services, it's the network setup for the entire
  25. ; * server instance, if none is specified above
  26. ; *
  27. [Network]
  28. port = 8003
  29. ; HTTPS for "Out of band" management applications such as the remote admin
  30. ; module. May specify https_main = True to make the main http server
  31. ; use https or "False" to make the main server HTTP
  32. ; https_main = False
  33. ;
  34. ; Create https_listener = "True" will create a listener on the port
  35. ; specified. Provide the path to your server certificate along with it's
  36. ; password
  37. ; https_listener = False
  38. ;
  39. ; Set our listener to this port
  40. ; https_port = 0
  41. ;
  42. ; Path to X509 certificate
  43. ; cert_path = "path/to/cert.p12"
  44. ;
  45. ; Password for cert
  46. ; cert_pass = "password"
  47. ; * The following are for the remote console
  48. ; * They have no effect for the local or basic console types
  49. ; * Leave commented to diable logins to the console
  50. ;ConsoleUser = Test
  51. ;ConsolePass = secret
  52. ;ConsolePort = 0
  53. [DatabaseService]
  54. StorageProvider = "OpenSim.Data.MySQL.dll"
  55. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  56. ; * As an example, the below configuration precisely mimicks the legacy
  57. ; * asset server. It is read by the asset IN connector (defined above)
  58. ; * and it then loads the OUT connector (a local database module). That,
  59. ; * in turn, reads the asset loader and database connection information
  60. ; *
  61. [AssetService]
  62. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  63. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  64. AssetLoaderArgs = "./assets/AssetSets.xml"
  65. ; * This configuration loads the inventory server modules. It duplicates
  66. ; * the function of the legacy inventory server
  67. ; *
  68. [InventoryService]
  69. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  70. ; * This is the new style grid service.
  71. ; * "Realm" is the table that is used for user lookup.
  72. ; * It defaults to "regions", which uses the legacy tables
  73. ; *
  74. [GridService]
  75. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  76. HypergridLinker = true
  77. ; Realm = "regions"
  78. ; AllowDuplicateNames = "True"
  79. ;; Perform distance check for the creation of a linked region
  80. ; Check4096 = "True"
  81. ;; Needed to display non-default map tile images for linked regions
  82. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  83. ;; Directory for map tile images of linked regions
  84. ; MapTileDirectory = "./maptiles"
  85. ;; Next, we can specify properties of regions, including default and fallback regions
  86. ;; The syntax is: Region_<RegionName> = "<flags>"
  87. ;; or: Region_<RegionID> = "<flags>"
  88. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  89. ;; For example:
  90. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  91. ; (replace spaces with underscore)
  92. ; * This is the configuration for the freeswitch server in grid mode
  93. [FreeswitchService]
  94. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  95. ;; The IP address of your FreeSWITCH server.
  96. ;; This address must be reachable by viewers.
  97. ; ServerAddress = 127.0.0.1
  98. ;; The following configuration parameters are optional
  99. ;; By default, this is the same as the ServerAddress
  100. ; Realm = 127.0.0.1
  101. ;; By default, this is the same as the ServerAddress on port 5060
  102. ; SIPProxy = 127.0.0.1:5060
  103. ;; Default is 5000ms
  104. ; DefaultTimeout = 5000
  105. ;; The dial plan context. Default is "default"
  106. ; Context = default
  107. ;; Currently unused
  108. ; UserName = freeswitch
  109. ;; Currently unused
  110. ; Password = password
  111. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  112. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  113. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  114. ;; production at your own risk
  115. ; EchoServer = 127.0.0.1
  116. ; EchoPort = 50505
  117. ; AttemptSTUN = false
  118. ; * This is the new style authentication service. Currently, only MySQL
  119. ; * is implemented.
  120. ; *
  121. [AuthenticationService]
  122. ; for the server connector
  123. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  124. ; Realm = "useraccounts"
  125. ;; Allow the service to process HTTP getauthinfo calls.
  126. ;; Default is false.
  127. ; AllowGetAuthInfo = false
  128. ;; Allow the service to process HTTP setauthinfo calls.
  129. ;; Default is false.
  130. ; AllowSetAuthInfo = false
  131. ;; Allow the service to process HTTP setpassword calls.
  132. ;; Default is false.
  133. ; AllowSetPassword = false
  134. [OpenIdService]
  135. ; for the server connector
  136. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  137. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  138. ; * This is the new style user service.
  139. ; * "Realm" is the table that is used for user lookup.
  140. ; * It defaults to "useraccounts", which uses the new style.
  141. ; * Realm = "users" will use the legacy tables as an authentication source
  142. ; *
  143. [UserAccountService]
  144. ; for the server connector
  145. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  146. ; Realm = "useraccounts"
  147. ; These are for creating new accounts by the service
  148. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  149. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  150. GridService = "OpenSim.Services.GridService.dll:GridService"
  151. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  152. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  153. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  154. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  155. ;; Default is false
  156. ; CreateDefaultAvatarEntries = false
  157. ;; Allow the service to process HTTP createuser calls.
  158. ;; Default is false.
  159. ; AllowCreateUser = false
  160. ;; Allow the service to process HTTP setaccount calls.
  161. ;; Default is false.
  162. ; AllowSetAccount = false
  163. [GridUserService]
  164. ; for the server connector
  165. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  166. [PresenceService]
  167. ; for the server connector
  168. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  169. [AvatarService]
  170. ; for the server connector
  171. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  172. [FriendsService]
  173. ; for the server connector
  174. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  175. [LibraryService]
  176. LibraryName = "OpenSim Library"
  177. DefaultLibrary = "./inventory/Libraries.xml"
  178. [LoginService]
  179. ; for the server connector
  180. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  181. ; for the service
  182. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  183. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  184. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  185. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  186. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  187. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  188. GridService = "OpenSim.Services.GridService.dll:GridService"
  189. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  190. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  191. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  192. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  193. ;; Ask co-operative viewers to use a different currency name
  194. ;Currency = ""
  195. WelcomeMessage = "Welcome, Avatar!"
  196. AllowRemoteSetLoginLevel = "false"
  197. ; For V2 map
  198. MapTileURL = "http://127.0.0.1:8002";
  199. ; If you run this login server behind a proxy, set this to true
  200. ; HasProxy = false
  201. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  202. ; CHANGE THIS
  203. GatekeeperURI = "http://127.0.0.1:8002"
  204. SRV_HomeURI = "http://127.0.0.1:8002"
  205. SRV_InventoryServerURI = "http://127.0.0.1:8002"
  206. SRV_AssetServerURI = "http://127.0.0.1:8002"
  207. SRV_ProfileServerURI = "http://127.0.0.1:8002"
  208. SRV_FriendsServerURI = "http://127.0.0.1:8002"
  209. SRV_IMServerURI = "http://127.0.0.1:8002"
  210. ;; Regular expressions for controlling which client versions are accepted/denied.
  211. ;; An empty string means nothing is checked.
  212. ;;
  213. ;; Example 1: allow only these 3 types of clients (any version of them)
  214. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  215. ;;
  216. ;; Example 2: allow all clients except these
  217. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  218. ;;
  219. ;; Note that these are regular expressions, so every character counts.
  220. ;; Also note that this is very weak security and should not be trusted as a reliable means
  221. ;; for keeping bad clients out; modified clients can fake their identifiers.
  222. ;;
  223. ;;
  224. ;AllowedClients = ""
  225. ;DeniedClients = ""
  226. [MapImageService]
  227. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  228. ; Set this if you want to change the default
  229. ; TilesStoragePath = "maptiles"
  230. [GridInfoService]
  231. ; These settings are used to return information on a get_grid_info call.
  232. ; Client launcher scripts and third-party clients make use of this to
  233. ; autoconfigure the client and to provide a nice user experience. If you
  234. ; want to facilitate that, you should configure the settings here according
  235. ; to your grid or standalone setup.
  236. ;
  237. ; See http://opensimulator.org/wiki/GridInfo
  238. ; login uri: for grid this is the login server URI
  239. login = http://127.0.0.1:8002/
  240. ; long grid name: the long name of your grid
  241. gridname = "the lost continent of hippo"
  242. ; short grid name: the short name of your grid
  243. gridnick = "hippogrid"
  244. ; login page: optional: if it exists it will be used to tell the client to use
  245. ; this as splash page
  246. ;welcome = http://127.0.0.1/welcome
  247. ; helper uri: optional: if it exists if will be used to tell the client to use
  248. ; this for all economy related things
  249. ;economy = http://127.0.0.1:8002/
  250. ; web page of grid: optional: page providing further information about your grid
  251. ;about = http://127.0.0.1/about/
  252. ; account creation: optional: page providing further information about obtaining
  253. ; a user account on your grid
  254. ;register = http://127.0.0.1/register
  255. ; help: optional: page providing further assistance for users of your grid
  256. ;help = http://127.0.0.1/help
  257. ; password help: optional: page providing password assistance for users of your grid
  258. ;password = http://127.0.0.1/password
  259. [GatekeeperService]
  260. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  261. ;; for the service
  262. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  263. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  264. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  265. GridService = "OpenSim.Services.GridService.dll:GridService"
  266. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  267. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  268. ; how does the outside world reach me? This acts as public key too.
  269. ; CHANGE THIS
  270. ExternalName = "http://127.0.0.1:8002"
  271. ; Does this grid allow incoming links to any region in it?
  272. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  273. AllowTeleportsToAnyRegion = true
  274. ; If you run this gatekeeper server behind a proxy, set this to true
  275. ; HasProxy = false
  276. ;; Regular expressions for controlling which client versions are accepted/denied.
  277. ;; An empty string means nothing is checked.
  278. ;;
  279. ;; Example 1: allow only these 3 types of clients (any version of them)
  280. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  281. ;;
  282. ;; Example 2: allow all clients except these
  283. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  284. ;;
  285. ;; Note that these are regular expressions, so every character counts.
  286. ;; Also note that this is very weak security and should not be trusted as a reliable means
  287. ;; for keeping bad clients out; modified clients can fake their identifiers.
  288. ;;
  289. ;;
  290. ;AllowedClients = ""
  291. ;DeniedClients = ""
  292. [UserAgentService]
  293. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  294. ;; for the service
  295. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  296. GridService = "OpenSim.Services.GridService.dll:GridService"
  297. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  298. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  299. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  300. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  301. ; If you run this user agent server behind a proxy, set this to true
  302. ; HasProxy = false
  303. ;; If you separate the UserAgentService from the LoginService, set this to
  304. ;; the IP address of the machine where your LoginService is
  305. ;LoginServerIP = "127.0.0.1"
  306. ; * The interface that local users get when they are in other grids.
  307. ; * This restricts the inventory operations while in other grids.
  308. ; * Still not completely safe, especially if users perform inventory operations
  309. ; * while in those grids. The more the user accesses his/her inventory, the more
  310. ; * those simulators will know about the user's inventory.
  311. ; *
  312. [HGInventoryService]
  313. ; For the InventoryServiceInConnector
  314. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  315. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  316. HomeURI = "http://127.0.0.1:8002"
  317. ; * The interface that local users get when they are in other grids.
  318. ; * This restricts the access that the rest of the world has to
  319. ; * the assets of this world.
  320. ; *
  321. [HGAssetService]
  322. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  323. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  324. HomeURI = "http://127.0.0.1:8002"
  325. [HGFriendsService]
  326. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  327. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  328. [HGInstantMessageService]
  329. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  330. GridService = "OpenSim.Services.GridService.dll:GridService"
  331. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  332. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  333. ; This should always be true in the Robust config
  334. InGatekeeper = True
  335. [Messaging]
  336. ; If you have an Offline IM server, set the vars in this section, so that
  337. ; incomming IMs to local users from foreign grids can be saved
  338. ;
  339. ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {}
  340. ;; URL of web service for offline message storage
  341. ; OfflineMessageURL = http://yourserver/Offline.php
  342. ;; Control whether group messages are forwarded to offline users.
  343. ;; Default is true.
  344. ;; This applies to the core groups module (Flotsam) only.
  345. ; ForwardOfflineGroupMessages = true