Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.34 KB | None | 0 0
  1. ; * Run
  2. ; * $ Robust.exe -inifile Robust.ini
  3. ; *
  4. ; **
  5. ; *
  6. ; * The Const section allows us to define some basic information that we
  7. ; * will use throughout our configuration. We will provide examples for
  8. ; * setting the base url of the Robust server and the public and private ports
  9. ; * it uses. Changing the values of the constants will set the operating
  10. ; * parameters thoughout the configuration. Other constants that may prove
  11. ; * to be useful may be added to the followin section. They may be
  12. ; * referenced anywhere in the configuration by using ${Const|Name}. One
  13. ; * such use is providing a base path for setting locations that Robust
  14. ; * uses to write data.
  15. ; *
  16. [Const]
  17.  
  18. ; The URL of the Robust server
  19. BaseURL = "http://127.0.0.1"
  20.  
  21. ; The public port of the Robust server
  22. PublicPort = "8002"
  23.  
  24. ; The private port of the Robust server
  25. PrivatePort = "8003"
  26.  
  27.  
  28. ; * The startup section lists all the connectors to start up in this server
  29. ; * instance. This may be only one, or it may be the entire server suite.
  30. ; * Multiple connectors should be separated by commas.
  31. ; *
  32. ; * These are the IN connectors the server uses, the in connectors
  33. ; * read this config file and load the needed service and database connectors
  34. ; *
  35. ; * The full syntax of a connector string is:
  36. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  37. ; *
  38. [Startup]
  39. ; Place to create a PID file
  40. ; If no path if specified then a PID file is not created.
  41. ; PIDFile = "/tmp/Robust.exe.pid"
  42.  
  43. ; Plugin Registry Location
  44. ; Set path to directory for plugin registry. Information
  45. ; about the registered repositories and installed plugins
  46. ; will be stored here
  47. ; The Robust.exe process must have R/W access to the location
  48. RegistryLocation = "."
  49.  
  50. ; Modular configurations
  51. ; Set path to directory for modular ini files...
  52. ; The Robust.exe process must have R/W access to the location
  53. ConfigDirectory = "robust-include"
  54.  
  55. ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
  56. ConsoleHistoryFileEnabled = true
  57.  
  58. ; The history file can be just a filename (relative to OpenSim's bin/ directory
  59. ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
  60. ConsoleHistoryFile = "RobustConsoleHistory.txt"
  61.  
  62. ; How many lines of command history should we keep? (default is 100)
  63. ConsoleHistoryFileLines = 100
  64.  
  65. [ServiceList]
  66. AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  67. InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  68. ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
  69. ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  70. GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
  71. GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  72. AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  73. OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  74. AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  75. LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  76. PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  77. UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  78. GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  79. AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
  80. FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  81. MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  82. MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  83. ;; Uncomment this if you want offline IM to work
  84. ; OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
  85. ;; Uncomment this if you want Groups V2 to work
  86. ; GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
  87. ;; Uncomment to provide bakes caching
  88. ; BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
  89.  
  90. ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
  91. ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
  92.  
  93. ;; Uncomment if you want to have centralized estate data
  94. ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
  95.  
  96. MuteListConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MuteListServiceConnector"
  97.  
  98. ; * This is common for all services, it's the network setup for the entire
  99. ; * server instance, if none is specified above
  100. ; *
  101. [Network]
  102. port = ${Const|PrivatePort}
  103.  
  104. ; HTTPS for "Out of band" management applications such as the remote admin
  105. ; module. May specify https_main = True to make the main http server
  106. ; use https or "False" to make the main server HTTP
  107. ; https_main = False
  108. ;
  109. ; Create https_listener = "True" will create a listener on the port
  110. ; specified. Provide the path to your server certificate along with it's
  111. ; password
  112. ; https_listener = False
  113. ;
  114. ; Set our listener to this port
  115. ; https_port = 0
  116. ;
  117. ; Path to X509 certificate
  118. ; cert_path = "path/to/cert.p12"
  119. ;
  120. ; Password for cert
  121. ; cert_pass = "password"
  122.  
  123. ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
  124. ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
  125. ;; but you want to protect them from unauthorized access.
  126. ; AuthType = "BasicHttpAuthentication"
  127. ; HttpAuthUsername = "some_username"
  128. ; HttpAuthPassword = "some_password"
  129. ;;
  130. ;; AuthType above can be overriden in any of the service sections below by
  131. ; AuthType = "None"
  132. ;; This is useful in cases where you want to protect most of the services,
  133. ;; but unprotect individual services. Username and Password can also be
  134. ;; overriden if you want to use different credentials for the different services.
  135.  
  136. ;; By default, scripts are not allowed to call private services via llHttpRequest()
  137. ;; Such calls are detected by the X-SecondLife-Shared HTTP header
  138. ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
  139. ;; (remember scripts can also be in visiting avatar attachments).
  140. ;; This can be overriden in individual private service sections if necessary
  141. AllowllHTTPRequestIn = false
  142.  
  143. ; * The following are for the remote console
  144. ; * They have no effect for the local or basic console types
  145. ; * Leave commented to diable logins to the console
  146. ;ConsoleUser = Test
  147. ;ConsolePass = secret
  148. ;ConsolePort = 0
  149.  
  150. [AccessControl]
  151. ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
  152. ;; Bar (|) separated list of viewers which may gain access to the regions.
  153. ;; One can use a substring of the viewer name to enable only certain
  154. ;; versions
  155. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  156. ;; - "Imprudence" has access
  157. ;; - "Imprudence 1.3" has access
  158. ;; - "Imprudence 1.3.1" has no access
  159. ; AllowedClients = ""
  160.  
  161. ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
  162. ;; Bar (|) separated list of viewers which may not gain access to the regions.
  163. ;; One can use a Substring of the viewer name to disable only certain
  164. ;; versions
  165. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  166. ;; - "Imprudence" has no access
  167. ;; - "Imprudence 1.3" has no access
  168. ;; - "Imprudence 1.3.1" has access
  169. ; DeniedClients = ""
  170.  
  171.  
  172. [DatabaseService]
  173. Include-WifiSQLite = config-include/storage/SQLiteStandalone.ini
  174. ; PGSQL
  175. ; Uncomment these lines if you want to use PGSQL storage
  176. ; Change the connection string to your db details
  177. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  178. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  179. Include-WifiSQLite = config-include/storage/WifiSQLite.ini
  180. ; MySQL
  181. ; Uncomment these lines if you want to use MySQL storage
  182. ; Change the connection string to your db details
  183. StorageProvider = "OpenSim.Data.MySQL.dll"
  184. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  185.  
  186.  
  187. ; * As an example, the below configuration precisely mimicks the legacy
  188. ; * asset server. It is read by the asset IN connector (defined above)
  189. ; * and it then loads the OUT connector (a local database module). That,
  190. ; * in turn, reads the asset loader and database connection information
  191. ; *
  192. [AssetService]
  193.  
  194. ;; Choose an asset service (Only one option should be enabled)
  195. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  196. ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
  197.  
  198. ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
  199. ;; These directories must be on the same physical filesystem
  200. ;BaseDirectory = "./fsassets/data"
  201. ;SpoolDirectory = "./fsassets/tmp"
  202.  
  203. ;; Original service can be checked if FSAssets can not find an asset
  204. ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
  205.  
  206. ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
  207. ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
  208. ;DaysBetweenAccessTimeUpdates = 30
  209.  
  210. ;; Should FSAssets print read/write stats to the robust console, default is true
  211. ;ShowConsoleStats = true
  212.  
  213. ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
  214. ;StorageProvider = ""
  215. ;ConnectionString = ""
  216. ;Realm = "fsassets"
  217.  
  218. ;; The following are common to both the default asset service and FSAsset service
  219.  
  220. ;; Common asset service options
  221. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  222. AssetLoaderArgs = "./assets/AssetSets.xml"
  223.  
  224. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  225. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  226. ; This only applies to maptiles served via the version 1 viewer mechanisms
  227. ; Default is false
  228. AllowRemoteDelete = false
  229.  
  230. ; Allow all assets to be remotely deleted.
  231. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  232. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  233. ; If set to true, AllowRemoteDelete = true is required as well.
  234. ; Default is false.
  235. AllowRemoteDeleteAllTypes = false
  236.  
  237.  
  238. ; * This configuration loads the inventory server modules. It duplicates
  239. ; * the function of the legacy inventory server
  240. ; *
  241. [InventoryService]
  242. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  243.  
  244. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  245. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  246. AllowDelete = true
  247.  
  248.  
  249. ; * This is the new style grid service.
  250. ; * "Realm" is the table that is used for user lookup.
  251. ; * It defaults to "regions", which uses the legacy tables
  252. ; *
  253. [GridService]
  254. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  255. ; Realm = "regions"
  256. ; AllowDuplicateNames = "True"
  257.  
  258. ;; Next, we can specify properties of regions, including default and fallback regions
  259. ;; The syntax is: Region_<RegionName> = "<flags>"
  260. ;; or: Region_<RegionID> = "<flags>"
  261. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  262. ;;
  263. ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.)
  264. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  265. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  266. ;; an explicit region.
  267. ;;
  268. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  269. ;; region will be used.
  270. ;;
  271. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  272. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  273. ;;
  274. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  275. ;;
  276. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  277. ;;
  278. ;; Example specification:
  279. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  280. ; (replace spaces with underscore)
  281.  
  282. ;; Allow supporting viewers to export content
  283. ;; Set to false to prevent export
  284. ExportSupported = true
  285.  
  286.  
  287. ; * This is the configuration for the freeswitch server in grid mode
  288. [FreeswitchService]
  289. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  290.  
  291. ;; The IP address of your FreeSWITCH server.
  292. ;; This address must be reachable by viewers.
  293. ; ServerAddress = 127.0.0.1
  294.  
  295. ;; The following configuration parameters are optional
  296.  
  297. ;; By default, this is the same as the ServerAddress
  298. ; Realm = 127.0.0.1
  299.  
  300. ;; By default, this is the same as the ServerAddress on port 5060
  301. ; SIPProxy = 127.0.0.1:5060
  302.  
  303. ;; Default is 5000ms
  304. ; DefaultTimeout = 5000
  305.  
  306. ;; The dial plan context. Default is "default"
  307. ; Context = default
  308.  
  309. ;; Currently unused
  310. ; UserName = freeswitch
  311.  
  312. ;; Currently unused
  313. ; Password = password
  314.  
  315. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  316. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  317. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  318. ;; production at your own risk
  319. ; EchoServer = 127.0.0.1
  320. ; EchoPort = 50505
  321. ; AttemptSTUN = false
  322.  
  323.  
  324. ; * This is the new style authentication service. Currently, only MySQL
  325. ; * is implemented.
  326. ; *
  327. [AuthenticationService]
  328. ; for the server connector
  329. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  330. ; Realm = "auth"
  331.  
  332. ;; Allow the service to process HTTP getauthinfo calls.
  333. ;; Default is false.
  334. ; AllowGetAuthInfo = false
  335.  
  336. ;; Allow the service to process HTTP setauthinfo calls.
  337. ;; Default is false.
  338. ; AllowSetAuthInfo = false
  339.  
  340. ;; Allow the service to process HTTP setpassword calls.
  341. ;; Default is false.
  342. ; AllowSetPassword = false
  343.  
  344.  
  345. [OpenIdService]
  346. ; for the server connector
  347. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  348. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  349.  
  350.  
  351. ; * This is the new style user service.
  352. ; * "Realm" is the table that is used for user lookup.
  353. ; * It defaults to "useraccounts", which uses the new style.
  354. ; * Realm = "users" will use the legacy tables as an authentication source
  355. ; *
  356. [UserAccountService]
  357. ; for the server connector
  358. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  359. ; Realm = "UserAccounts"
  360.  
  361. ; These are for creating new accounts by the service
  362. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  363. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  364. GridService = "OpenSim.Services.GridService.dll:GridService"
  365. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  366. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  367. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  368.  
  369. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  370. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  371. ;; Default is false
  372. CreateDefaultAvatarEntries = true
  373.  
  374. ;; Allow the service to process HTTP createuser calls.
  375. ;; Default is false.
  376. ; AllowCreateUser = false
  377.  
  378. ;; Allow the service to process HTTP setaccount calls.
  379. ;; Default is false.
  380. ; AllowSetAccount = false
  381.  
  382.  
  383. [GridUserService]
  384. ; for the server connector
  385. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  386.  
  387.  
  388. [AgentPreferencesService]
  389. ; for the server connector
  390. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
  391.  
  392.  
  393. [PresenceService]
  394. ; for the server connector
  395. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  396.  
  397. [AvatarService]
  398. ; for the server connector
  399. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  400.  
  401.  
  402. [FriendsService]
  403. ; for the server connector
  404. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  405.  
  406. [EstateService]
  407. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  408.  
  409. [LibraryService]
  410. LibraryName = "OpenSim Library"
  411. DefaultLibrary = "./inventory/Libraries.xml"
  412.  
  413.  
  414. [LoginService]
  415. ; for the server connector
  416. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  417. ; for the service
  418. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  419. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  420. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  421. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  422. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  423. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  424. GridService = "OpenSim.Services.GridService.dll:GridService"
  425. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  426. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  427. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  428.  
  429. ; The minimum user level required for a user to be able to login. 0 by default
  430. ; If you disable a particular user's account then you can set their login level below this number.
  431. ; You can also change this level from the console though these changes will not be persisted.
  432. ; MinLoginLevel = 0
  433.  
  434. ; Ask co-operative viewers to use a different currency name
  435. ;Currency = ""
  436.  
  437. ;; Set minimum fee to publish classified
  438. ; ClassifiedFee = 0
  439.  
  440. WelcomeMessage = "Welcome, Avatar!"
  441. AllowRemoteSetLoginLevel = "false"
  442.  
  443. ; For V2 map
  444. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  445.  
  446. ; Url to search service
  447. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  448.  
  449. ; For V3 destination guide
  450. ; DestinationGuide = "${Const|BaseURL}/guide"
  451.  
  452. ; For V3 avatar picker (( work in progress ))
  453. ; AvatarPicker = "${Const|BaseURL}/avatars"
  454.  
  455. ; If you run this login server behind a proxy, set this to true
  456. ; HasProxy = false
  457.  
  458. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  459. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  460. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  461. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  462. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  463. ;; Options are
  464. ;; "none" no DST
  465. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  466. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  467. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  468. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  469.  
  470. ;Basic Login Service Dos Protection Tweaks
  471. ;;
  472. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  473. ;; If you set this to true and you don't have a transparent proxy, it may allow attackers to put random things in the X-Forwarded-For header to
  474. ;; get around this basic DOS protection.
  475. ;DOSAllowXForwardedForHeader = false
  476. ;;
  477. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  478. ;DOSRequestTimeFrameMS = 10000
  479. ;;
  480. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  481. ;DOSMaxRequestsInTimeFrame = 5
  482. ;;
  483. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  484. ;DOSForgiveClientAfterMS = 120000
  485. ;;
  486. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  487.  
  488.  
  489. [MapImageService]
  490. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  491.  
  492. ; Set this if you want to change the default
  493. ; TilesStoragePath = "maptiles"
  494. ;
  495. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  496. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  497. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  498. ;
  499. ; Additionally, if you run this server behind a proxy, set this to true
  500. ; HasProxy = false
  501.  
  502.  
  503. [GridInfoService]
  504. ; These settings are used to return information on a get_grid_info call.
  505. ; Client launcher scripts and third-party clients make use of this to
  506. ; autoconfigure the client and to provide a nice user experience. If you
  507. ; want to facilitate that, you should configure the settings here according
  508. ; to your grid or standalone setup.
  509. ;
  510. ; See http://opensimulator.org/wiki/GridInfo
  511.  
  512. ; login uri: for grid this is the login server URI
  513. login = ${Const|BaseURL}:${Const|PublicPort}/
  514.  
  515. ; long grid name: the long name of your grid
  516. gridname = "the lost continent of hippo"
  517.  
  518. ; short grid name: the short name of your grid
  519. gridnick = "hippogrid"
  520.  
  521. ; login page: optional: if it exists it will be used to tell the client to use
  522. ; this as splash page
  523. ;welcome = ${Const|BaseURL}/welcome
  524.  
  525. ; helper uri: optional: if it exists it will be used to tell the client to use
  526. ; this for all economy related things
  527. ;economy = ${Const|BaseURL}/economy
  528.  
  529. ; web page of grid: optional: page providing further information about your grid
  530. ;about = ${Const|BaseURL}/about
  531.  
  532. ; account creation: optional: page providing further information about obtaining
  533. ; a user account on your grid
  534. ;register = ${Const|BaseURL}/register
  535.  
  536. ; help: optional: page providing further assistance for users of your grid
  537. ;help = ${Const|BaseURL}/help
  538.  
  539. ; password help: optional: page providing password assistance for users of your grid
  540. ;password = ${Const|BaseURL}/password
  541.  
  542.  
  543. [Messaging]
  544. ; OfflineIM
  545. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  546.  
  547.  
  548. [Groups]
  549. ;; Sets the maximum number of groups an agent may join
  550. ; MaxAgentGroups = 42
  551.  
  552.  
  553. [UserProfilesService]
  554. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  555. Enabled = false
  556. ;; Configure this for separate profiles database
  557. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  558. ;; Realm = UserProfiles
  559. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  560. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  561.  
  562.  
  563. [BakedTextureService]
  564. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  565. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  566. BaseDirectory = "./bakes"
  567.  
  568. [MuteListService]
  569. LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement