Robust.HG.ini.example 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. ; Realm = "regions"
  77. ; AllowDuplicateNames = "True"
  78. ;; Perform distance check for the creation of a linked region
  79. ; Check4096 = "True"
  80. ;; Needed to display non-default map tile images for linked regions
  81. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  82. ;; Directory for map tile images of linked regions
  83. ; MapTileDirectory = "./maptiles"
  84. ;; Next, we can specify properties of regions, including default and fallback regions
  85. ;; The syntax is: Region_<RegionName> = "<flags>"
  86. ;; or: Region_<RegionID> = "<flags>"
  87. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  88. ;; For example:
  89. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  90. ; (replace spaces with underscore)
  91. ; * This is the configuration for the freeswitch server in grid mode
  92. [FreeswitchService]
  93. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  94. ;; The IP address of your FreeSWITCH server.
  95. ;; This address must be reachable by viewers.
  96. ; ServerAddress = 127.0.0.1
  97. ;; The following configuration parameters are optional
  98. ;; By default, this is the same as the ServerAddress
  99. ; Realm = 127.0.0.1
  100. ;; By default, this is the same as the ServerAddress on port 5060
  101. ; SIPProxy = 127.0.0.1:5060
  102. ;; Default is 5000ms
  103. ; DefaultTimeout = 5000
  104. ;; The dial plan context. Default is "default"
  105. ; Context = default
  106. ;; Currently unused
  107. ; UserName = freeswitch
  108. ;; Currently unused
  109. ; Password = password
  110. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  111. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  112. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  113. ;; production at your own risk
  114. ; EchoServer = 127.0.0.1
  115. ; EchoPort = 50505
  116. ; AttemptSTUN = false
  117. ; * This is the new style authentication service. Currently, only MySQL
  118. ; * is implemented.
  119. ; *
  120. [AuthenticationService]
  121. ; for the server connector
  122. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  123. ; Realm = "useraccounts"
  124. [OpenIdService]
  125. ; for the server connector
  126. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  127. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  128. ; * This is the new style user service.
  129. ; * "Realm" is the table that is used for user lookup.
  130. ; * It defaults to "useraccounts", which uses the new style.
  131. ; * Realm = "users" will use the legacy tables as an authentication source
  132. ; *
  133. [UserAccountService]
  134. ; for the server connector
  135. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  136. ; Realm = "useraccounts"
  137. ; These are for creating new accounts by the service
  138. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  139. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  140. GridService = "OpenSim.Services.GridService.dll:GridService"
  141. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  142. [GridUserService]
  143. ; for the server connector
  144. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  145. [PresenceService]
  146. ; for the server connector
  147. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  148. [AvatarService]
  149. ; for the server connector
  150. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  151. [FriendsService]
  152. ; for the server connector
  153. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  154. [LibraryService]
  155. LibraryName = "OpenSim Library"
  156. DefaultLibrary = "./inventory/Libraries.xml"
  157. [LoginService]
  158. ; for the server connector
  159. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  160. ; for the service
  161. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  162. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  163. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  164. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  165. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  166. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  167. GridService = "OpenSim.Services.GridService.dll:GridService"
  168. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  169. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  170. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  171. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  172. ;; Ask co-operative viewers to use a different currency name
  173. ;Currency = ""
  174. WelcomeMessage = "Welcome, Avatar!"
  175. AllowRemoteSetLoginLevel = "false"
  176. ; For V2 map
  177. ; MapTileURL = "http://127.0.0.1:8002";
  178. ; If you run this login server behind a proxy, set this to true
  179. ; HasProxy = false
  180. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  181. ; CHANGE THIS
  182. GatekeeperURI = "http://127.0.0.1:8002"
  183. SRV_HomeURI = "http://127.0.0.1:8002"
  184. SRV_InventoryServerURI = "http://127.0.0.1:8002"
  185. SRV_AssetServerURI = "http://127.0.0.1:8002"
  186. SRV_ProfileServerURI = "http://127.0.0.1:8002/user"
  187. SRV_FriendsServerURI = "http://127.0.0.1:8002"
  188. SRV_IMServerURI = "http://127.0.0.1:8002"
  189. ;; Regular expressions for controlling which client versions are accepted/denied.
  190. ;; An empty string means nothing is checked.
  191. ;;
  192. ;; Example 1: allow only these 3 types of clients (any version of them)
  193. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  194. ;;
  195. ;; Example 2: allow all clients except these
  196. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  197. ;;
  198. ;; Note that these are regular expressions, so every character counts.
  199. ;; Also note that this is very weak security and should not be trusted as a reliable means
  200. ;; for keeping bad clients out; modified clients can fake their identifiers.
  201. ;;
  202. ;;
  203. ;AllowedClients = ""
  204. ;DeniedClients = ""
  205. [MapImageService]
  206. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  207. ; Set this if you want to change the default
  208. ; TilesStoragePath = "maptiles"
  209. [GridInfoService]
  210. ; These settings are used to return information on a get_grid_info call.
  211. ; Client launcher scripts and third-party clients make use of this to
  212. ; autoconfigure the client and to provide a nice user experience. If you
  213. ; want to facilitate that, you should configure the settings here according
  214. ; to your grid or standalone setup.
  215. ;
  216. ; See http://opensimulator.org/wiki/GridInfo
  217. ; login uri: for grid this is the login server URI
  218. login = http://127.0.0.1:8002/
  219. ; long grid name: the long name of your grid
  220. gridname = "the lost continent of hippo"
  221. ; short grid name: the short name of your grid
  222. gridnick = "hippogrid"
  223. ; login page: optional: if it exists it will be used to tell the client to use
  224. ; this as splash page
  225. ;welcome = http://127.0.0.1/welcome
  226. ; helper uri: optional: if it exists if will be used to tell the client to use
  227. ; this for all economy related things
  228. ;economy = http://127.0.0.1:8002/
  229. ; web page of grid: optional: page providing further information about your grid
  230. ;about = http://127.0.0.1/about/
  231. ; account creation: optional: page providing further information about obtaining
  232. ; a user account on your grid
  233. ;register = http://127.0.0.1/register
  234. ; help: optional: page providing further assistance for users of your grid
  235. ;help = http://127.0.0.1/help
  236. ; password help: optional: page providing password assistance for users of your grid
  237. ;password = http://127.0.0.1/password
  238. [GatekeeperService]
  239. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  240. ;; for the service
  241. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  242. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  243. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  244. GridService = "OpenSim.Services.GridService.dll:GridService"
  245. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  246. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  247. ; how does the outside world reach me? This acts as public key too.
  248. ; CHANGE THIS
  249. ExternalName = "http://127.0.0.1:8002"
  250. ; Does this grid allow incoming links to any region in it?
  251. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  252. AllowTeleportsToAnyRegion = true
  253. ; If you run this gatekeeper server behind a proxy, set this to true
  254. ; HasProxy = false
  255. ;; Regular expressions for controlling which client versions are accepted/denied.
  256. ;; An empty string means nothing is checked.
  257. ;;
  258. ;; Example 1: allow only these 3 types of clients (any version of them)
  259. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  260. ;;
  261. ;; Example 2: allow all clients except these
  262. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  263. ;;
  264. ;; Note that these are regular expressions, so every character counts.
  265. ;; Also note that this is very weak security and should not be trusted as a reliable means
  266. ;; for keeping bad clients out; modified clients can fake their identifiers.
  267. ;;
  268. ;;
  269. ;AllowedClients = ""
  270. ;DeniedClients = ""
  271. [UserAgentService]
  272. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  273. ;; for the service
  274. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  275. GridService = "OpenSim.Services.GridService.dll:GridService"
  276. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  277. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  278. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  279. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  280. ; If you run this user agent server behind a proxy, set this to true
  281. ; HasProxy = false
  282. ;; If you separate the UserAgentService from the LoginService, set this to
  283. ;; the IP address of the machine where your LoginService is
  284. ;LoginServerIP = "127.0.0.1"
  285. ; * The interface that local users get when they are in other grids.
  286. ; * This restricts the inventory operations while in other grids.
  287. ; * Still not completely safe, especially if users perform inventory operations
  288. ; * while in those grids. The more the user accesses his/her inventory, the more
  289. ; * those simulators will know about the user's inventory.
  290. ; *
  291. [HGInventoryService]
  292. ; For the InventoryServiceInConnector
  293. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  294. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  295. ProfileServerURI = "http://127.0.0.1:8002/user"
  296. ; * The interface that local users get when they are in other grids.
  297. ; * This restricts the access that the rest of the world has to
  298. ; * the assets of this world.
  299. ; *
  300. [HGAssetService]
  301. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  302. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  303. ProfileServerURI = "http://127.0.0.1:8002/user"
  304. [HGFriendsService]
  305. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  306. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  307. [HGInstantMessageService]
  308. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  309. GridService = "OpenSim.Services.GridService.dll:GridService"
  310. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  311. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  312. ; This should always be true in the Robust config
  313. InGatekeeper = True
  314. [Messaging]
  315. ; If you have an Offline IM server, set the vars in this section, so that
  316. ; incomming IMs to local users from foreign grids can be saved
  317. ;
  318. ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {}
  319. ;; URL of web service for offline message storage
  320. ; OfflineMessageURL = http://yourserver/Offline.php
  321. ;; Control whether group messages are forwarded to offline users.
  322. ;; Default is true.
  323. ;; This applies to the core groups module (Flotsam) only.
  324. ; ForwardOfflineGroupMessages = true