Robust.HG.ini.example 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  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. ; AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  143. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  144. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  145. ;; Default is false
  146. ;; If you enable this you will also need to uncomment the AvatarService line above
  147. ; CreateDefaultAvatarEntries = false
  148. [GridUserService]
  149. ; for the server connector
  150. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  151. [PresenceService]
  152. ; for the server connector
  153. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  154. [AvatarService]
  155. ; for the server connector
  156. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  157. [FriendsService]
  158. ; for the server connector
  159. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  160. [LibraryService]
  161. LibraryName = "OpenSim Library"
  162. DefaultLibrary = "./inventory/Libraries.xml"
  163. [LoginService]
  164. ; for the server connector
  165. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  166. ; for the service
  167. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  168. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  169. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  170. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  171. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  172. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  173. GridService = "OpenSim.Services.GridService.dll:GridService"
  174. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  175. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  176. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  177. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  178. ;; Ask co-operative viewers to use a different currency name
  179. ;Currency = ""
  180. WelcomeMessage = "Welcome, Avatar!"
  181. AllowRemoteSetLoginLevel = "false"
  182. ; For V2 map
  183. ; MapTileURL = "http://127.0.0.1:8002";
  184. ; If you run this login server behind a proxy, set this to true
  185. ; HasProxy = false
  186. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  187. ; CHANGE THIS
  188. GatekeeperURI = "http://127.0.0.1:8002"
  189. SRV_HomeURI = "http://127.0.0.1:8002"
  190. SRV_InventoryServerURI = "http://127.0.0.1:8002"
  191. SRV_AssetServerURI = "http://127.0.0.1:8002"
  192. SRV_ProfileServerURI = "http://127.0.0.1:8002/user"
  193. SRV_FriendsServerURI = "http://127.0.0.1:8002"
  194. SRV_IMServerURI = "http://127.0.0.1:8002"
  195. ;; Regular expressions for controlling which client versions are accepted/denied.
  196. ;; An empty string means nothing is checked.
  197. ;;
  198. ;; Example 1: allow only these 3 types of clients (any version of them)
  199. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  200. ;;
  201. ;; Example 2: allow all clients except these
  202. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  203. ;;
  204. ;; Note that these are regular expressions, so every character counts.
  205. ;; Also note that this is very weak security and should not be trusted as a reliable means
  206. ;; for keeping bad clients out; modified clients can fake their identifiers.
  207. ;;
  208. ;;
  209. ;AllowedClients = ""
  210. ;DeniedClients = ""
  211. [MapImageService]
  212. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  213. ; Set this if you want to change the default
  214. ; TilesStoragePath = "maptiles"
  215. [GridInfoService]
  216. ; These settings are used to return information on a get_grid_info call.
  217. ; Client launcher scripts and third-party clients make use of this to
  218. ; autoconfigure the client and to provide a nice user experience. If you
  219. ; want to facilitate that, you should configure the settings here according
  220. ; to your grid or standalone setup.
  221. ;
  222. ; See http://opensimulator.org/wiki/GridInfo
  223. ; login uri: for grid this is the login server URI
  224. login = http://127.0.0.1:8002/
  225. ; long grid name: the long name of your grid
  226. gridname = "the lost continent of hippo"
  227. ; short grid name: the short name of your grid
  228. gridnick = "hippogrid"
  229. ; login page: optional: if it exists it will be used to tell the client to use
  230. ; this as splash page
  231. ;welcome = http://127.0.0.1/welcome
  232. ; helper uri: optional: if it exists if will be used to tell the client to use
  233. ; this for all economy related things
  234. ;economy = http://127.0.0.1:8002/
  235. ; web page of grid: optional: page providing further information about your grid
  236. ;about = http://127.0.0.1/about/
  237. ; account creation: optional: page providing further information about obtaining
  238. ; a user account on your grid
  239. ;register = http://127.0.0.1/register
  240. ; help: optional: page providing further assistance for users of your grid
  241. ;help = http://127.0.0.1/help
  242. ; password help: optional: page providing password assistance for users of your grid
  243. ;password = http://127.0.0.1/password
  244. [GatekeeperService]
  245. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  246. ;; for the service
  247. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  248. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  249. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  250. GridService = "OpenSim.Services.GridService.dll:GridService"
  251. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  252. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  253. ; how does the outside world reach me? This acts as public key too.
  254. ; CHANGE THIS
  255. ExternalName = "http://127.0.0.1:8002"
  256. ; Does this grid allow incoming links to any region in it?
  257. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  258. AllowTeleportsToAnyRegion = true
  259. ; If you run this gatekeeper server behind a proxy, set this to true
  260. ; HasProxy = false
  261. ;; Regular expressions for controlling which client versions are accepted/denied.
  262. ;; An empty string means nothing is checked.
  263. ;;
  264. ;; Example 1: allow only these 3 types of clients (any version of them)
  265. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  266. ;;
  267. ;; Example 2: allow all clients except these
  268. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  269. ;;
  270. ;; Note that these are regular expressions, so every character counts.
  271. ;; Also note that this is very weak security and should not be trusted as a reliable means
  272. ;; for keeping bad clients out; modified clients can fake their identifiers.
  273. ;;
  274. ;;
  275. ;AllowedClients = ""
  276. ;DeniedClients = ""
  277. [UserAgentService]
  278. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  279. ;; for the service
  280. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  281. GridService = "OpenSim.Services.GridService.dll:GridService"
  282. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  283. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  284. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  285. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  286. ; If you run this user agent server behind a proxy, set this to true
  287. ; HasProxy = false
  288. ;; If you separate the UserAgentService from the LoginService, set this to
  289. ;; the IP address of the machine where your LoginService is
  290. ;LoginServerIP = "127.0.0.1"
  291. ; * The interface that local users get when they are in other grids.
  292. ; * This restricts the inventory operations while in other grids.
  293. ; * Still not completely safe, especially if users perform inventory operations
  294. ; * while in those grids. The more the user accesses his/her inventory, the more
  295. ; * those simulators will know about the user's inventory.
  296. ; *
  297. [HGInventoryService]
  298. ; For the InventoryServiceInConnector
  299. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  300. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  301. ProfileServerURI = "http://127.0.0.1:8002/user"
  302. ; * The interface that local users get when they are in other grids.
  303. ; * This restricts the access that the rest of the world has to
  304. ; * the assets of this world.
  305. ; *
  306. [HGAssetService]
  307. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  308. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  309. ProfileServerURI = "http://127.0.0.1:8002/user"
  310. [HGFriendsService]
  311. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  312. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  313. [HGInstantMessageService]
  314. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  315. GridService = "OpenSim.Services.GridService.dll:GridService"
  316. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  317. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  318. ; This should always be true in the Robust config
  319. InGatekeeper = True
  320. [Messaging]
  321. ; If you have an Offline IM server, set the vars in this section, so that
  322. ; incomming IMs to local users from foreign grids can be saved
  323. ;
  324. ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {}
  325. ;; URL of web service for offline message storage
  326. ; OfflineMessageURL = http://yourserver/Offline.php
  327. ;; Control whether group messages are forwarded to offline users.
  328. ;; Default is true.
  329. ;; This applies to the core groups module (Flotsam) only.
  330. ; ForwardOfflineGroupMessages = true