Robust.ini.example 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. ; Plugin Registry Location
  16. ; Set path to directory for plugin registry. Information
  17. ; about the registered repositories and installed plugins
  18. ; will be stored here
  19. ; The Robust.exe process must hvae R/W access to the location
  20. RegistryLocation = "."
  21. ; Modular configurations
  22. ; Set path to directory for modular ini files...
  23. ; The Robust.exe process must hvae R/W access to the location
  24. ConfigDirectory = "/home/opensim/etc/Configs"
  25. [ServiceList]
  26. AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  27. InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  28. VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  29. GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector"
  30. GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  31. AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  32. OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  33. AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  34. LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  35. PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  36. UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  37. GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  38. FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  39. MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  40. MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  41. ; * This is common for all services, it's the network setup for the entire
  42. ; * server instance, if none is specified above
  43. ; *
  44. [Network]
  45. port = 8003
  46. ; HTTPS for "Out of band" management applications such as the remote admin
  47. ; module. May specify https_main = True to make the main http server
  48. ; use https or "False" to make the main server HTTP
  49. ; https_main = False
  50. ;
  51. ; Create https_listener = "True" will create a listener on the port
  52. ; specified. Provide the path to your server certificate along with it's
  53. ; password
  54. ; https_listener = False
  55. ;
  56. ; Set our listener to this port
  57. ; https_port = 0
  58. ;
  59. ; Path to X509 certificate
  60. ; cert_path = "path/to/cert.p12"
  61. ;
  62. ; Password for cert
  63. ; cert_pass = "password"
  64. ; * The following are for the remote console
  65. ; * They have no effect for the local or basic console types
  66. ; * Leave commented to diable logins to the console
  67. ;ConsoleUser = Test
  68. ;ConsolePass = secret
  69. ;ConsolePort = 0
  70. [DatabaseService]
  71. StorageProvider = "OpenSim.Data.MySQL.dll"
  72. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  73. ; * As an example, the below configuration precisely mimicks the legacy
  74. ; * asset server. It is read by the asset IN connector (defined above)
  75. ; * and it then loads the OUT connector (a local database module). That,
  76. ; * in turn, reads the asset loader and database connection information
  77. ; *
  78. [AssetService]
  79. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  80. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  81. AssetLoaderArgs = "./assets/AssetSets.xml"
  82. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  83. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  84. ; This only applies to maptiles served via the version 1 viewer mechanisms
  85. ; Default is false
  86. AllowRemoteDelete = false
  87. ; Allow all assets to be remotely deleted.
  88. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  89. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  90. ; If set to true, AllowRemoteDelete = true is required as well.
  91. ; Default is false.
  92. AllowRemoteDeleteAllTypes = false
  93. ; * This configuration loads the inventory server modules. It duplicates
  94. ; * the function of the legacy inventory server
  95. ; *
  96. [InventoryService]
  97. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  98. ; * This is the new style grid service.
  99. ; * "Realm" is the table that is used for user lookup.
  100. ; * It defaults to "regions", which uses the legacy tables
  101. ; *
  102. [GridService]
  103. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  104. ; Realm = "regions"
  105. ; AllowDuplicateNames = "True"
  106. ;; Next, we can specify properties of regions, including default and fallback regions
  107. ;; The syntax is: Region_<RegionName> = "<flags>"
  108. ;; or: Region_<RegionID> = "<flags>"
  109. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  110. ;; For example:
  111. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  112. ; (replace spaces with underscore)
  113. ; * This is the configuration for the freeswitch server in grid mode
  114. [FreeswitchService]
  115. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  116. ;; The IP address of your FreeSWITCH server.
  117. ;; This address must be reachable by viewers.
  118. ; ServerAddress = 127.0.0.1
  119. ;; The following configuration parameters are optional
  120. ;; By default, this is the same as the ServerAddress
  121. ; Realm = 127.0.0.1
  122. ;; By default, this is the same as the ServerAddress on port 5060
  123. ; SIPProxy = 127.0.0.1:5060
  124. ;; Default is 5000ms
  125. ; DefaultTimeout = 5000
  126. ;; The dial plan context. Default is "default"
  127. ; Context = default
  128. ;; Currently unused
  129. ; UserName = freeswitch
  130. ;; Currently unused
  131. ; Password = password
  132. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  133. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  134. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  135. ;; production at your own risk
  136. ; EchoServer = 127.0.0.1
  137. ; EchoPort = 50505
  138. ; AttemptSTUN = false
  139. ; * This is the new style authentication service. Currently, only MySQL
  140. ; * is implemented.
  141. ; *
  142. [AuthenticationService]
  143. ; for the server connector
  144. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  145. ;; Allow the service to process HTTP getauthinfo calls.
  146. ;; Default is false.
  147. ; AllowGetAuthInfo = false
  148. ;; Allow the service to process HTTP setauthinfo calls.
  149. ;; Default is false.
  150. ; AllowSetAuthInfo = false
  151. ;; Allow the service to process HTTP setpassword calls.
  152. ;; Default is false.
  153. ; AllowSetPassword = false
  154. [OpenIdService]
  155. ; for the server connector
  156. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  157. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  158. ; * This is the new style authentication service. Currently, only MySQL
  159. ; * is implemented. "Realm" is the table that is used for user lookup.
  160. ; * It defaults to "useraccounts", which uses the new style.
  161. ; * Realm = "users" will use the legacy tables as an authentication source
  162. ; *
  163. [UserAccountService]
  164. ; for the server connector
  165. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  166. ; Realm = "useraccounts"
  167. ; These are for creating new accounts by the service
  168. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  169. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  170. GridService = "OpenSim.Services.GridService.dll:GridService"
  171. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  172. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  173. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  174. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  175. ;; Default is false
  176. CreateDefaultAvatarEntries = true
  177. ;; Allow the service to process HTTP createuser calls.
  178. ;; Default is false.
  179. ; AllowCreateUser = false
  180. ;; Allow the service to process HTTP setaccount calls.
  181. ;; Default is false.
  182. ; AllowSetAccount = false
  183. [GridUserService]
  184. ; for the server connector
  185. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  186. [PresenceService]
  187. ; for the server connector
  188. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  189. ; Set this to true to allow the use of advanced web services and multiple
  190. ; bots using one account
  191. AllowDuplicatePresences = false;
  192. [AvatarService]
  193. ; for the server connector
  194. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  195. [FriendsService]
  196. ; for the server connector
  197. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  198. [LibraryService]
  199. LibraryName = "OpenSim Library"
  200. DefaultLibrary = "./inventory/Libraries.xml"
  201. [LoginService]
  202. ; for the server connector
  203. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  204. ; for the service
  205. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  206. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  207. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  208. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  209. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  210. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  211. GridService = "OpenSim.Services.GridService.dll:GridService"
  212. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  213. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  214. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  215. ;; Ask co-operative viewers to use a different currency name
  216. ;Currency = ""
  217. WelcomeMessage = "Welcome, Avatar!"
  218. AllowRemoteSetLoginLevel = "false"
  219. ; For V2 map
  220. MapTileURL = "http://127.0.0.1:8002";
  221. ; For V2/3 Web Profiles
  222. ; Work in progress: The ProfileServerURL/OpenIDServerURL are
  223. ; being used in a development viewer as support for webprofiles
  224. ; is being developed across the componets
  225. ;
  226. ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
  227. ;
  228. ; For V2/V3 webapp authentication SSO
  229. ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
  230. ; If you run this login server behind a proxy, set this to true
  231. ; HasProxy = false
  232. ;; Regular expressions for controlling which client versions are accepted/denied.
  233. ;; An empty string means nothing is checked.
  234. ;;
  235. ;; Example 1: allow only these 3 types of clients (any version of them)
  236. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  237. ;;
  238. ;; Example 2: allow all clients except these
  239. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  240. ;;
  241. ;; Note that these are regular expressions, so every character counts.
  242. ;; Also note that this is very weak security and should not be trusted as a reliable means
  243. ;; for keeping bad clients out; modified clients can fake their identifiers.
  244. ;;
  245. ;;
  246. ;AllowedClients = ""
  247. ;DeniedClients = ""
  248. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  249. ;; Viewers do not listen to timezone sent by the server. They use Pacific Standard Time instead,
  250. ;; but rely on the server to calculate Daylight Saving Time. Sending another DST than US Pacific
  251. ;; would result in time inconsistencies between grids (during summer and around DST transition period)
  252. ;; default let OpenSim calculate US Pacific DST
  253. ;; "none" disable DST (equivallent to "local" with system set to GMT)
  254. ;; "local" force legacy behaviour (using local system time to calculate DST)
  255. ; DSTZone = "America/Los_Angeles;Pacific Standard Time"
  256. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  257. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  258. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  259. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  260. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  261. ;; Options are
  262. ;; "none" no DST
  263. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  264. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  265. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  266. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  267. [MapImageService]
  268. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  269. ; Set this if you want to change the default
  270. ; TilesStoragePath = "maptiles"
  271. ;
  272. ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002),
  273. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  274. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  275. ;
  276. ; Additionally, if you run this server behind a proxy, set this to true
  277. ; HasProxy = false
  278. [GridInfoService]
  279. ; These settings are used to return information on a get_grid_info call.
  280. ; Client launcher scripts and third-party clients make use of this to
  281. ; autoconfigure the client and to provide a nice user experience. If you
  282. ; want to facilitate that, you should configure the settings here according
  283. ; to your grid or standalone setup.
  284. ;
  285. ; See http://opensimulator.org/wiki/GridInfo
  286. ; login uri: for grid this is the login server URI
  287. login = http://127.0.0.1:8002/
  288. ; long grid name: the long name of your grid
  289. gridname = "the lost continent of hippo"
  290. ; short grid name: the short name of your grid
  291. gridnick = "hippogrid"
  292. ; login page: optional: if it exists it will be used to tell the client to use
  293. ; this as splash page
  294. ;welcome = http://127.0.0.1/welcome
  295. ; helper uri: optional: if it exists if will be used to tell the client to use
  296. ; this for all economy related things
  297. ;economy = http://127.0.0.1:9000/
  298. ; web page of grid: optional: page providing further information about your grid
  299. ;about = http://127.0.0.1/about/
  300. ; account creation: optional: page providing further information about obtaining
  301. ; a user account on your grid
  302. ;register = http://127.0.0.1/register
  303. ; help: optional: page providing further assistance for users of your grid
  304. ;help = http://127.0.0.1/help
  305. ; password help: optional: page providing password assistance for users of your grid
  306. ;password = http://127.0.0.1/password