Robust.ini.example 16 KB

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