Robust.ini.example 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. ; * Run
  2. ; * $ Robust.exe -inifile Robust.ini
  3. ; *
  4. ; * The startup section lists all the connectors to start up in this server
  5. ; * instance. This may be only one, or it may be the entire server suite.
  6. ; * Multiple connectors should be separated by commas.
  7. ; *
  8. ; * These are the IN connectors the server uses, the in connectors
  9. ; * read this config file and load the needed service and database connectors
  10. ; *
  11. ; * The full syntax of a connector string is:
  12. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  13. ; *
  14. [Startup]
  15. 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"
  16. ; * This is common for all services, it's the network setup for the entire
  17. ; * server instance, if none is specified above
  18. ; *
  19. [Network]
  20. port = 8003
  21. ; * The following are for the remote console
  22. ; * They have no effect for the local or basic console types
  23. ; * Leave commented to diable logins to the console
  24. ;ConsoleUser = Test
  25. ;ConsolePass = secret
  26. ;ConsolePort = 0
  27. [DatabaseService]
  28. StorageProvider = "OpenSim.Data.MySQL.dll"
  29. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  30. ; * As an example, the below configuration precisely mimicks the legacy
  31. ; * asset server. It is read by the asset IN connector (defined above)
  32. ; * and it then loads the OUT connector (a local database module). That,
  33. ; * in turn, reads the asset loader and database connection information
  34. ; *
  35. [AssetService]
  36. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  37. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  38. AssetLoaderArgs = "./assets/AssetSets.xml"
  39. AllowRemoteDelete = "false"
  40. ; * This configuration loads the inventory server modules. It duplicates
  41. ; * the function of the legacy inventory server
  42. ; *
  43. [InventoryService]
  44. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  45. ; * This is the new style grid service.
  46. ; * "Realm" is the table that is used for user lookup.
  47. ; * It defaults to "regions", which uses the legacy tables
  48. ; *
  49. [GridService]
  50. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  51. ; Realm = "regions"
  52. ; AllowDuplicateNames = "True"
  53. ;; Next, we can specify properties of regions, including default and fallback regions
  54. ;; The syntax is: Region_<RegionName> = "<flags>"
  55. ;; or: Region_<RegionID> = "<flags>"
  56. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  57. ;; For example:
  58. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  59. ; (replace spaces with underscore)
  60. ; * This is the configuration for the freeswitch server in grid mode
  61. [FreeswitchService]
  62. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  63. ;; The IP address of your FreeSWITCH server.
  64. ; ServerAddress = 127.0.0.1
  65. ;; The following configuration parameters are optional
  66. ;; By default, this is the same as the ServerAddress
  67. ; Realm = 127.0.0.1
  68. ;; By default, this is the same as the ServerAddress on port 5060
  69. ; SIPProxy = 127.0.0.1:5060
  70. ;; Default is 5000ms
  71. ; DefaultTimeout = 5000
  72. ;; The dial plan context. Default is "default"
  73. ; Context = default
  74. ;; Currently unused
  75. ; UserName = freeswitch
  76. ;; Currently unused
  77. ; Password = password
  78. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  79. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  80. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  81. ;; production at your own risk
  82. ; EchoServer = 127.0.0.1
  83. ; EchoPort = 50505
  84. ; AttemptSTUN = false
  85. ; * This is the new style authentication service. Currently, only MySQL
  86. ; * is implemented.
  87. ; *
  88. [AuthenticationService]
  89. ; for the server connector
  90. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  91. [OpenIdService]
  92. ; for the server connector
  93. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  94. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  95. ; * This is the new style authentication service. Currently, only MySQL
  96. ; * is implemented. "Realm" is the table that is used for user lookup.
  97. ; * It defaults to "useraccounts", which uses the new style.
  98. ; * Realm = "users" will use the legacy tables as an authentication source
  99. ; *
  100. [UserAccountService]
  101. ; for the server connector
  102. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  103. ; Realm = "useraccounts"
  104. ; These are for creating new accounts by the service
  105. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  106. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  107. GridService = "OpenSim.Services.GridService.dll:GridService"
  108. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  109. [GridUserService]
  110. ; for the server connector
  111. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  112. [PresenceService]
  113. ; for the server connector
  114. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  115. ; Set this to true to allow the use of advanced web services and multiple
  116. ; bots using one account
  117. AllowDuplicatePresences = false;
  118. [AvatarService]
  119. ; for the server connector
  120. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  121. [FriendsService]
  122. ; for the server connector
  123. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  124. [LibraryService]
  125. LibraryName = "OpenSim Library"
  126. DefaultLibrary = "./inventory/Libraries.xml"
  127. [LoginService]
  128. ; for the server connector
  129. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  130. ; for the service
  131. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  132. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  133. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  134. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  135. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  136. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  137. GridService = "OpenSim.Services.GridService.dll:GridService"
  138. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  139. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  140. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  141. WelcomeMessage = "Welcome, Avatar!"
  142. AllowRemoteSetLoginLevel = "false"
  143. ; For snowglobe's web map
  144. ; MapTileURL = "";
  145. ; If you run this login server behind a proxy, set this to true
  146. ; HasProxy = false
  147. ;; Regular expressions for controlling which client versions are accepted/denied.
  148. ;; An empty string means nothing is checked.
  149. ;;
  150. ;; Example 1: allow only these 3 types of clients (any version of them)
  151. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  152. ;;
  153. ;; Example 2: allow all clients except these
  154. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  155. ;;
  156. ;; Note that these are regular expressions, so every character counts.
  157. ;; Also note that this is very weak security and should not be trusted as a reliable means
  158. ;; for keeping bad clients out; modified clients can fake their identifiers.
  159. ;;
  160. ;;
  161. ;AllowedClients = ""
  162. ;DeniedClients = ""
  163. [GridInfoService]
  164. ; These settings are used to return information on a get_grid_info call.
  165. ; Client launcher scripts and third-party clients make use of this to
  166. ; autoconfigure the client and to provide a nice user experience. If you
  167. ; want to facilitate that, you should configure the settings here according
  168. ; to your grid or standalone setup.
  169. ;
  170. ; See http://opensimulator.org/wiki/GridInfo
  171. ; login uri: for grid this is the login server URI
  172. login = http://127.0.0.1:9000/
  173. ; long grid name: the long name of your grid
  174. gridname = "the lost continent of hippo"
  175. ; short grid name: the short name of your grid
  176. gridnick = "hippogrid"
  177. ; login page: optional: if it exists it will be used to tell the client to use
  178. ; this as splash page
  179. ;welcome = http://127.0.0.1/welcome
  180. ; helper uri: optional: if it exists if will be used to tell the client to use
  181. ; this for all economy related things
  182. ;economy = http://127.0.0.1:9000/
  183. ; web page of grid: optional: page providing further information about your grid
  184. ;about = http://127.0.0.1/about/
  185. ; account creation: optional: page providing further information about obtaining
  186. ; a user account on your grid
  187. ;register = http://127.0.0.1/register
  188. ; help: optional: page providing further assistance for users of your grid
  189. ;help = http://127.0.0.1/help
  190. ; password help: optional: page providing password assistance for users of your grid
  191. ;password = http://127.0.0.1/password