Robust.ini.example 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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,8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector,8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  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. ; HTTPS for "Out of band" management applications such as the remote admin
  22. ; module. May specify https_main = True to make the main http server
  23. ; use https or "False" to make the main server HTTP
  24. ; https_main = False
  25. ;
  26. ; Create https_listener = "True" will create a listener on the port
  27. ; specified. Provide the path to your server certificate along with it's
  28. ; password
  29. ; https_listener = False
  30. ;
  31. ; Set our listener to this port
  32. ; https_port = 0
  33. ;
  34. ; Path to X509 certificate
  35. ; cert_path = "path/to/cert.p12"
  36. ;
  37. ; Password for cert
  38. ; cert_pass = "password"
  39. ; * The following are for the remote console
  40. ; * They have no effect for the local or basic console types
  41. ; * Leave commented to diable logins to the console
  42. ;ConsoleUser = Test
  43. ;ConsolePass = secret
  44. ;ConsolePort = 0
  45. [DatabaseService]
  46. StorageProvider = "OpenSim.Data.MySQL.dll"
  47. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  48. ; * As an example, the below configuration precisely mimicks the legacy
  49. ; * asset server. It is read by the asset IN connector (defined above)
  50. ; * and it then loads the OUT connector (a local database module). That,
  51. ; * in turn, reads the asset loader and database connection information
  52. ; *
  53. [AssetService]
  54. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  55. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  56. AssetLoaderArgs = "./assets/AssetSets.xml"
  57. AllowRemoteDelete = "false"
  58. ; * This configuration loads the inventory server modules. It duplicates
  59. ; * the function of the legacy inventory server
  60. ; *
  61. [InventoryService]
  62. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  63. ; * This is the new style grid service.
  64. ; * "Realm" is the table that is used for user lookup.
  65. ; * It defaults to "regions", which uses the legacy tables
  66. ; *
  67. [GridService]
  68. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  69. ; Realm = "regions"
  70. ; AllowDuplicateNames = "True"
  71. ;; Next, we can specify properties of regions, including default and fallback regions
  72. ;; The syntax is: Region_<RegionName> = "<flags>"
  73. ;; or: Region_<RegionID> = "<flags>"
  74. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  75. ;; For example:
  76. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  77. ; (replace spaces with underscore)
  78. ; * This is the configuration for the freeswitch server in grid mode
  79. [FreeswitchService]
  80. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  81. ;; The IP address of your FreeSWITCH server.
  82. ;; This address must be reachable by viewers.
  83. ; ServerAddress = 127.0.0.1
  84. ;; The following configuration parameters are optional
  85. ;; By default, this is the same as the ServerAddress
  86. ; Realm = 127.0.0.1
  87. ;; By default, this is the same as the ServerAddress on port 5060
  88. ; SIPProxy = 127.0.0.1:5060
  89. ;; Default is 5000ms
  90. ; DefaultTimeout = 5000
  91. ;; The dial plan context. Default is "default"
  92. ; Context = default
  93. ;; Currently unused
  94. ; UserName = freeswitch
  95. ;; Currently unused
  96. ; Password = password
  97. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  98. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  99. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  100. ;; production at your own risk
  101. ; EchoServer = 127.0.0.1
  102. ; EchoPort = 50505
  103. ; AttemptSTUN = false
  104. ; * This is the new style authentication service. Currently, only MySQL
  105. ; * is implemented.
  106. ; *
  107. [AuthenticationService]
  108. ; for the server connector
  109. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  110. ;; Allow the service to process HTTP getauthinfo calls.
  111. ;; Default is false.
  112. ; AllowGetAuthInfo = false
  113. ;; Allow the service to process HTTP setauthinfo calls.
  114. ;; Default is false.
  115. ; AllowSetAuthInfo = false
  116. ;; Allow the service to process HTTP setpassword calls.
  117. ;; Default is false.
  118. ; AllowSetPassword = false
  119. [OpenIdService]
  120. ; for the server connector
  121. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  122. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  123. ; * This is the new style authentication service. Currently, only MySQL
  124. ; * is implemented. "Realm" is the table that is used for user lookup.
  125. ; * It defaults to "useraccounts", which uses the new style.
  126. ; * Realm = "users" will use the legacy tables as an authentication source
  127. ; *
  128. [UserAccountService]
  129. ; for the server connector
  130. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  131. ; Realm = "useraccounts"
  132. ; These are for creating new accounts by the service
  133. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  134. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  135. GridService = "OpenSim.Services.GridService.dll:GridService"
  136. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  137. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  138. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  139. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  140. ;; Default is false
  141. ; CreateDefaultAvatarEntries = false
  142. ;; Allow the service to process HTTP createuser calls.
  143. ;; Default is false.
  144. ; AllowCreateUser = false
  145. ;; Allow the service to process HTTP setaccount calls.
  146. ;; Default is false.
  147. ; AllowSetAccount = 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. ; Set this to true to allow the use of advanced web services and multiple
  155. ; bots using one account
  156. AllowDuplicatePresences = false;
  157. [AvatarService]
  158. ; for the server connector
  159. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  160. [FriendsService]
  161. ; for the server connector
  162. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  163. [LibraryService]
  164. LibraryName = "OpenSim Library"
  165. DefaultLibrary = "./inventory/Libraries.xml"
  166. [LoginService]
  167. ; for the server connector
  168. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  169. ; for the service
  170. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  171. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  172. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  173. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  174. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  175. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  176. GridService = "OpenSim.Services.GridService.dll:GridService"
  177. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  178. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  179. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  180. ;; Ask co-operative viewers to use a different currency name
  181. ;Currency = ""
  182. WelcomeMessage = "Welcome, Avatar!"
  183. AllowRemoteSetLoginLevel = "false"
  184. ; For V2 map
  185. MapTileURL = "http://127.0.0.1:8002";
  186. ; If you run this login server behind a proxy, set this to true
  187. ; HasProxy = false
  188. ;; Regular expressions for controlling which client versions are accepted/denied.
  189. ;; An empty string means nothing is checked.
  190. ;;
  191. ;; Example 1: allow only these 3 types of clients (any version of them)
  192. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  193. ;;
  194. ;; Example 2: allow all clients except these
  195. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  196. ;;
  197. ;; Note that these are regular expressions, so every character counts.
  198. ;; Also note that this is very weak security and should not be trusted as a reliable means
  199. ;; for keeping bad clients out; modified clients can fake their identifiers.
  200. ;;
  201. ;;
  202. ;AllowedClients = ""
  203. ;DeniedClients = ""
  204. [MapImageService]
  205. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  206. ; Set this if you want to change the default
  207. ; TilesStoragePath = "maptiles"
  208. [GridInfoService]
  209. ; These settings are used to return information on a get_grid_info call.
  210. ; Client launcher scripts and third-party clients make use of this to
  211. ; autoconfigure the client and to provide a nice user experience. If you
  212. ; want to facilitate that, you should configure the settings here according
  213. ; to your grid or standalone setup.
  214. ;
  215. ; See http://opensimulator.org/wiki/GridInfo
  216. ; login uri: for grid this is the login server URI
  217. login = http://127.0.0.1:8002/
  218. ; long grid name: the long name of your grid
  219. gridname = "the lost continent of hippo"
  220. ; short grid name: the short name of your grid
  221. gridnick = "hippogrid"
  222. ; login page: optional: if it exists it will be used to tell the client to use
  223. ; this as splash page
  224. ;welcome = http://127.0.0.1/welcome
  225. ; helper uri: optional: if it exists if will be used to tell the client to use
  226. ; this for all economy related things
  227. ;economy = http://127.0.0.1:9000/
  228. ; web page of grid: optional: page providing further information about your grid
  229. ;about = http://127.0.0.1/about/
  230. ; account creation: optional: page providing further information about obtaining
  231. ; a user account on your grid
  232. ;register = http://127.0.0.1/register
  233. ; help: optional: page providing further assistance for users of your grid
  234. ;help = http://127.0.0.1/help
  235. ; password help: optional: page providing password assistance for users of your grid
  236. ;password = http://127.0.0.1/password