Robust.HG.ini.example 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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"
  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. ; * The following are for the remote console
  30. ; * They have no effect for the local or basic console types
  31. ; * Leave commented to diable logins to the console
  32. ;ConsoleUser = Test
  33. ;ConsolePass = secret
  34. ;ConsolePort = 0
  35. [DatabaseService]
  36. StorageProvider = "OpenSim.Data.MySQL.dll"
  37. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  38. ; * As an example, the below configuration precisely mimicks the legacy
  39. ; * asset server. It is read by the asset IN connector (defined above)
  40. ; * and it then loads the OUT connector (a local database module). That,
  41. ; * in turn, reads the asset loader and database connection information
  42. ; *
  43. [AssetService]
  44. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  45. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  46. AssetLoaderArgs = "./assets/AssetSets.xml"
  47. ; * This configuration loads the inventory server modules. It duplicates
  48. ; * the function of the legacy inventory server
  49. ; *
  50. [InventoryService]
  51. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  52. ; * This is the new style grid service.
  53. ; * "Realm" is the table that is used for user lookup.
  54. ; * It defaults to "regions", which uses the legacy tables
  55. ; *
  56. [GridService]
  57. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  58. ; Realm = "regions"
  59. ; AllowDuplicateNames = "True"
  60. ;; Perform distance check for the creation of a linked region
  61. ; Check4096 = "True"
  62. ;; Needed to display non-default map tile images for linked regions
  63. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  64. ;; Directory for map tile images of linked regions
  65. ; MapTileDirectory = "./maptiles"
  66. ;; Next, we can specify properties of regions, including default and fallback regions
  67. ;; The syntax is: Region_<RegionName> = "<flags>"
  68. ;; or: Region_<RegionID> = "<flags>"
  69. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  70. ;; For example:
  71. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  72. ; (replace spaces with underscore)
  73. ; * This is the configuration for the freeswitch server in grid mode
  74. [FreeswitchService]
  75. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  76. ;; The IP address of your FreeSWITCH server.
  77. ; ServerAddress = 127.0.0.1
  78. ;; The following configuration parameters are optional
  79. ;; By default, this is the same as the ServerAddress
  80. ; Realm = 127.0.0.1
  81. ;; By default, this is the same as the ServerAddress on port 5060
  82. ; SIPProxy = 127.0.0.1:5060
  83. ;; Default is 5000ms
  84. ; DefaultTimeout = 5000
  85. ;; The dial plan context. Default is "default"
  86. ; Context = default
  87. ;; Currently unused
  88. ; UserName = freeswitch
  89. ;; Currently unused
  90. ; Password = password
  91. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  92. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  93. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  94. ;; production at your own risk
  95. ; EchoServer = 127.0.0.1
  96. ; EchoPort = 50505
  97. ; AttemptSTUN = false
  98. ; * This is the new style authentication service. Currently, only MySQL
  99. ; * is implemented.
  100. ; *
  101. [AuthenticationService]
  102. ; for the server connector
  103. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  104. ; Realm = "useraccounts"
  105. [OpenIdService]
  106. ; for the server connector
  107. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  108. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  109. ; * This is the new style user service.
  110. ; * "Realm" is the table that is used for user lookup.
  111. ; * It defaults to "useraccounts", which uses the new style.
  112. ; * Realm = "users" will use the legacy tables as an authentication source
  113. ; *
  114. [UserAccountService]
  115. ; for the server connector
  116. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  117. ; Realm = "useraccounts"
  118. ; These are for creating new accounts by the service
  119. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  120. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  121. GridService = "OpenSim.Services.GridService.dll:GridService"
  122. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  123. [GridUserService]
  124. ; for the server connector
  125. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  126. [PresenceService]
  127. ; for the server connector
  128. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  129. [AvatarService]
  130. ; for the server connector
  131. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  132. [FriendsService]
  133. ; for the server connector
  134. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  135. [LibraryService]
  136. LibraryName = "OpenSim Library"
  137. DefaultLibrary = "./inventory/Libraries.xml"
  138. [LoginService]
  139. ; for the server connector
  140. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  141. ; for the service
  142. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  143. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  144. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  145. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  146. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  147. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  148. GridService = "OpenSim.Services.GridService.dll:GridService"
  149. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  150. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  151. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  152. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  153. WelcomeMessage = "Welcome, Avatar!"
  154. AllowRemoteSetLoginLevel = "false"
  155. ; If you run this login server behind a proxy, set this to true
  156. ; HasProxy = false
  157. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  158. ; CHANGE THIS
  159. GatekeeperURI = "http://127.0.0.1:8002"
  160. SRV_HomeURI = "http://127.0.0.1:8002"
  161. SRV_InventoryServerURI = "http://127.0.0.1:8002"
  162. SRV_AssetServerURI = "http://127.0.0.1:8002"
  163. SRV_ProfileServerURI = "http://127.0.0.1:8002/user"
  164. ;; Regular expressions for controlling which client versions are accepted/denied.
  165. ;; An empty string means nothing is checked.
  166. ;;
  167. ;; Example 1: allow only these 3 types of clients (any version of them)
  168. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  169. ;;
  170. ;; Example 2: allow all clients except these
  171. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  172. ;;
  173. ;; Note that these are regular expressions, so every character counts.
  174. ;; Also note that this is very weak security and should not be trusted as a reliable means
  175. ;; for keeping bad clients out; modified clients can fake their identifiers.
  176. ;;
  177. ;;
  178. ;AllowedClients = ""
  179. ;DeniedClients = ""
  180. [GridInfoService]
  181. ; These settings are used to return information on a get_grid_info call.
  182. ; Client launcher scripts and third-party clients make use of this to
  183. ; autoconfigure the client and to provide a nice user experience. If you
  184. ; want to facilitate that, you should configure the settings here according
  185. ; to your grid or standalone setup.
  186. ;
  187. ; See http://opensimulator.org/wiki/GridInfo
  188. ; login uri: for grid this is the login server URI
  189. login = http://127.0.0.1:8002/
  190. ; long grid name: the long name of your grid
  191. gridname = "the lost continent of hippo"
  192. ; short grid name: the short name of your grid
  193. gridnick = "hippogrid"
  194. ; login page: optional: if it exists it will be used to tell the client to use
  195. ; this as splash page
  196. ;welcome = http://127.0.0.1/welcome
  197. ; helper uri: optional: if it exists if will be used to tell the client to use
  198. ; this for all economy related things
  199. ;economy = http://127.0.0.1:8002/
  200. ; web page of grid: optional: page providing further information about your grid
  201. ;about = http://127.0.0.1/about/
  202. ; account creation: optional: page providing further information about obtaining
  203. ; a user account on your grid
  204. ;register = http://127.0.0.1/register
  205. ; help: optional: page providing further assistance for users of your grid
  206. ;help = http://127.0.0.1/help
  207. ; password help: optional: page providing password assistance for users of your grid
  208. ;password = http://127.0.0.1/password
  209. [GatekeeperService]
  210. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  211. ;; for the service
  212. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  213. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  214. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  215. GridService = "OpenSim.Services.GridService.dll:GridService"
  216. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  217. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  218. ; how does the outside world reach me? This acts as public key too.
  219. ; CHANGE THIS
  220. ExternalName = "http://127.0.0.1:8002"
  221. ; Does this grid allow incoming links to any region in it?
  222. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  223. AllowTeleportsToAnyRegion = true
  224. ; If you run this gatekeeper server behind a proxy, set this to true
  225. ; HasProxy = false
  226. ;; Regular expressions for controlling which client versions are accepted/denied.
  227. ;; An empty string means nothing is checked.
  228. ;;
  229. ;; Example 1: allow only these 3 types of clients (any version of them)
  230. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  231. ;;
  232. ;; Example 2: allow all clients except these
  233. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  234. ;;
  235. ;; Note that these are regular expressions, so every character counts.
  236. ;; Also note that this is very weak security and should not be trusted as a reliable means
  237. ;; for keeping bad clients out; modified clients can fake their identifiers.
  238. ;;
  239. ;;
  240. ;AllowedClients = ""
  241. ;DeniedClients = ""
  242. [UserAgentService]
  243. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  244. ;; for the service
  245. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  246. GridService = "OpenSim.Services.GridService.dll:GridService"
  247. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  248. ; If you run this user agent server behind a proxy, set this to true
  249. ; HasProxy = false
  250. ;; If you separate the UserAgentService from the LoginService, set this to
  251. ;; the IP address of the machine where your LoginService is
  252. ;LoginServerIP = "127.0.0.1"
  253. ; * The interface that local users get when they are in other grids.
  254. ; * This restricts the inventory operations while in other grids.
  255. ; * Still not completely safe, especially if users perform inventory operations
  256. ; * while in those grids. The more the user accesses his/her inventory, the more
  257. ; * those simulators will know about the user's inventory.
  258. ; *
  259. [HGInventoryService]
  260. ; For the InventoryServiceInConnector
  261. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  262. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  263. ProfileServerURI = "http://127.0.0.1:8002/user"
  264. ; * The interface that local users get when they are in other grids.
  265. ; * This restricts the access that the rest of the world has to
  266. ; * the assets of this world.
  267. ; *
  268. [HGAssetService]
  269. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  270. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  271. ProfileServerURI = "http://127.0.0.1:8002/user"