Advertisement
Guest User

Untitled

a guest
Nov 11th, 2018
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.29 KB | None | 0 0
  1. ; * Run
  2. ; * $ Robust.exe -inifile Robust.HG.ini
  3. ; *
  4.  
  5. ; * Configurations for enabling HG1.5
  6. ; *
  7. ; * HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
  8. ; * OpenSim.Server.Handlers.dll:UserAgentService
  9. ; * Additional OpenSim.Server.Handlers.dll:AssetServiceConnector and
  10. ; * OpenSim.Server.Handlers.dll:XInventoryInConnector
  11. ; * are started in port 8002, outside the firewall
  12. ; *
  13. ; **
  14. ; *
  15. ; * The Const section allows us to define some basic information that we
  16. ; * will use throughout our configuration. We will provide examples for
  17. ; * setting the base url of the Robust server and the public and private ports
  18. ; * it uses. Changing the values of the constants will set the operating
  19. ; * parameters thoughout the configuration. Other constants that may prove
  20. ; * to be useful may be added to the followin section. They may be
  21. ; * referenced anywhere in the configuration by using ${Const|Name}. One
  22. ; * such use is providing a base path for setting locations that Robust
  23. ; * uses to write data.
  24. ; *
  25. [Const]
  26.  
  27. ; The URL of the Robust server
  28. BaseURL = "http://grid.brenners-world.de"
  29.  
  30. ; The public port of the Robust server
  31. PublicPort = "8002"
  32.  
  33. ; The private port of the Robust server
  34. PrivatePort = "8003"
  35.  
  36. ; * The startup section lists all the connectors to start up in this server
  37. ; * instance. This may be only one, or it may be the entire server suite.
  38. ; * Multiple connectors should be separated by commas.
  39. ; *
  40. ; * These are the IN connectors the server uses, the in connectors
  41. ; * read this config file and load the needed service and database connectors
  42. ; *
  43. ; * The full syntax of a connector string is:
  44. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  45. ; *
  46. [Startup]
  47. ; Place to create a PID file
  48. ; If no path if specified then a PID file is not created.
  49. ; PIDFile = "/tmp/Robust.exe.pid"
  50.  
  51. ; Plugin Registry Location
  52. ; Set path to directory for plugin registry. Information
  53. ; about the registered repositories and installed plugins
  54. ; will be stored here
  55. ; The Robust.exe process must have R/W access to the location
  56. RegistryLocation = "."
  57.  
  58. ; Modular configurations
  59. ; Set path to directory for modular ini files...
  60. ; The Robust.exe process must have R/W access to the location
  61. ConfigDirectory = "robust-include"
  62.  
  63. ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
  64. ConsoleHistoryFileEnabled = true
  65.  
  66. ; The history file can be just a filename (relative to OpenSim's bin/ directory
  67. ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
  68. ConsoleHistoryFile = "RobustConsoleHistory.txt"
  69.  
  70. ; How many lines of command history should we keep? (default is 100)
  71. ConsoleHistoryFileLines = 100
  72.  
  73. ; Time stamp commands in history file (default false)
  74. ; ConsoleHistoryTimeStamp = false
  75.  
  76. ; peers SSL certificate validation options
  77. ; you can allow selfsigned certificates or no official CA with next option set to true
  78. NoVerifyCertChain = true
  79. ; you can also bypass the hostname or domain verification
  80. NoVerifyCertHostname = true
  81. ; having both options true does provide encryption but with low security
  82. ; set both true if you don't care to use SSL, they are needed to contact regions or grids that do use it.
  83.  
  84.  
  85. [ServiceList]
  86. AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  87. InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  88. ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
  89. ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  90. GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
  91. GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  92. AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  93. OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  94. AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  95. LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  96. PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  97. UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  98. GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  99. AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
  100. FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  101. MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  102. MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  103. ;; Uncomment this if you want offline IM to work
  104. OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
  105. ;; Uncomment this if you want Groups V2 to work
  106. GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
  107. ;; Uncomment to provide bakes caching
  108. BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
  109.  
  110. ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
  111. UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
  112.  
  113. ;; Uncomment if you want to have centralized estate data
  114. EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
  115.  
  116. MuteListConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MuteListServiceConnector"
  117.  
  118. ;; Additions for Hypergrid
  119.  
  120. GatekeeperServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector"
  121. UserAgentServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserAgentServerConnector"
  122. HeloServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
  123. HGFriendsServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HGFriendsServerConnector"
  124. InstantMessageServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:InstantMessageServerConnector"
  125. HGInventoryServiceConnector = "HGInventoryService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  126. HGAssetServiceConnector = "HGAssetService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  127. ;; Uncomment this if you want Groups V2, HG to work
  128. HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector"
  129.  
  130. ; * This is common for all services, it's the network setup for the entire
  131. ; * server instance, if none is specified above
  132. ; *
  133. [Network]
  134. port = ${Const|PrivatePort}
  135.  
  136. ; HTTPS for "Out of band" management applications such as the remote admin
  137. ; module. May specify https_main = True to make the main http server
  138. ; use https or "False" to make the main server HTTP
  139. ; https_main = False
  140. ;
  141. ; Create https_listener = "True" will create a listener on the port
  142. ; specified. Provide the path to your server certificate along with it's
  143. ; password
  144. ; https_listener = False
  145. ;
  146. ; Set our listener to this port
  147. ; https_port = 0
  148. ;
  149. ; Path to X509 certificate
  150. ; cert_path = "path/to/cert.p12"
  151. ;
  152. ; Password for cert
  153. ; cert_pass = "password"
  154.  
  155. ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
  156. ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
  157. ;; but you want to protect them from unauthorized access.
  158. ; AuthType = "BasicHttpAuthentication"
  159. ; HttpAuthUsername = "some_username"
  160. ; HttpAuthPassword = "some_password"
  161. ;;
  162. ;; AuthType above can be overriden in any of the service sections below by
  163. ; AuthType = "None"
  164. ;; This is useful in cases where you want to protect most of the services,
  165. ;; but unprotect individual services. Username and Password can also be
  166. ;; overriden if you want to use different credentials for the different services.
  167. ;; Hypergrid services are not affected by this; they are publicly available
  168. ;; by design.
  169.  
  170. ;; By default, scripts are not allowed to call private services via llHttpRequest()
  171. ;; Such calls are detected by the X-SecondLife-Shared HTTP header
  172. ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
  173. ;; (remember scripts can also be in visiting avatar attachments).
  174. ;; This can be overriden in individual private service sections if necessary
  175. AllowllHTTPRequestIn = false
  176.  
  177. ; * The following are for the remote console
  178. ; * They have no effect for the local or basic console types
  179. ; * Leave commented to diable logins to the console
  180. ;ConsoleUser = Test
  181. ;ConsolePass = secret
  182. ;ConsolePort = 0
  183.  
  184.  
  185. [Hypergrid]
  186. ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
  187. ;; This is the address of the external robust server that
  188. ;; runs the UserAgentsService, possibly this server.
  189. ;; For example http://myworld.com:8002
  190. ;; This is a default that can be overwritten in some sections.
  191. HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  192.  
  193. ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
  194. ;; This is the address of the external robust server
  195. ;; that runs the Gatekeeper service, possibly this server.
  196. ;; For example http://myworld.com:8002
  197. ;; This is a default that can be overwritten in some sections.
  198. GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  199.  
  200. [AccessControl]
  201. ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
  202. ;; Bar (|) separated list of viewers which may gain access to the regions.
  203. ;; One can use a substring of the viewer name to enable only certain
  204. ;; versions
  205. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  206. ;; - "Imprudence" has access
  207. ;; - "Imprudence 1.3" has access
  208. ;; - "Imprudence 1.3.1" has no access
  209. ; AllowedClients = ""
  210.  
  211. ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
  212. ;; Bar (|) separated list of viewers which may not gain access to the regions.
  213. ;; One can use a Substring of the viewer name to disable only certain
  214. ;; versions
  215. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  216. ;; - "Imprudence" has no access
  217. ;; - "Imprudence 1.3" has no access
  218. ;; - "Imprudence 1.3.1" has access
  219. ; DeniedClients = ""
  220.  
  221. [DatabaseService]
  222. ; PGSQL
  223. ; Uncomment these lines if you want to use PGSQL storage
  224. ; Change the connection string to your db details
  225. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  226. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  227.  
  228. ; MySQL
  229. ; Uncomment these lines if you want to use MySQL storage
  230. ; Change the connection string to your db details
  231. StorageProvider = "OpenSim.Data.MySQL.dll"
  232. ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  233. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=SUPERGERHEIM;Old Guids=true;"
  234.  
  235. ; * As an example, the below configuration precisely mimicks the legacy
  236. ; * asset server. It is read by the asset IN connector (defined above)
  237. ; * and it then loads the OUT connector (a local database module). That,
  238. ; * in turn, reads the asset loader and database connection information
  239. ; *
  240. [AssetService]
  241.  
  242. ;; Choose an asset service (Only one option should be enabled)
  243. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  244. ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
  245.  
  246. ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
  247. ;; These directories must be on the same physical filesystem
  248. ;BaseDirectory = "./fsassets/data"
  249. ;SpoolDirectory = "./fsassets/tmp"
  250.  
  251. ;; Original service can be checked if FSAssets can not find an asset
  252. ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
  253.  
  254. ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
  255. ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
  256. ;DaysBetweenAccessTimeUpdates = 30
  257.  
  258. ;; Should FSAssets print read/write stats to the robust console, default is true
  259. ;ShowConsoleStats = true
  260.  
  261. ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
  262. ;StorageProvider = ""
  263. ;ConnectionString = ""
  264. ;Realm = "fsassets"
  265.  
  266. ;; The following are common to both the default asset service and FSAsset service
  267.  
  268. ;; Common asset service options
  269. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  270. AssetLoaderArgs = "./assets/AssetSets.xml"
  271.  
  272. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  273. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  274. ; This only applies to maptiles served via the version 1 viewer mechanisms
  275. ; Default is false
  276. AllowRemoteDelete = false
  277.  
  278. ; Allow all assets to be remotely deleted.
  279. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  280. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  281. ; If set to true, AllowRemoteDelete = true is required as well.
  282. ; Default is false.
  283. AllowRemoteDeleteAllTypes = false
  284.  
  285. ; * This configuration loads the inventory server modules. It duplicates
  286. ; * the function of the legacy inventory server
  287. ; *
  288. [InventoryService]
  289. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  290.  
  291. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  292. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  293. AllowDelete = true
  294.  
  295.  
  296. ; * This is the new style grid service.
  297. ; * "Realm" is the table that is used for user lookup.
  298. ; * It defaults to "regions", which uses the legacy tables
  299. ; *
  300. [GridService]
  301. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  302.  
  303. ; Realm = "regions"
  304. ; AllowDuplicateNames = ""
  305.  
  306. ;; Perform distance check for the creation of a linked region
  307. ; Check4096 = "True"
  308.  
  309. ;; Needed to display non-default map tile images for linked regions
  310. AssetService = "OpenSim.Services.AssetService.dll:AssetService"
  311.  
  312. ;; Directory for map tile images of linked regions
  313. ; MapTileDirectory = "./maptiles"
  314.  
  315. ;; Next, we can specify properties of regions, including default and fallback regions
  316. ;; The syntax is: Region_<RegionName> = "<flags>"
  317. ;; or: Region_<RegionID> = "<flags>"
  318. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  319. ;;
  320. ;; 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.)
  321. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  322. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  323. ;; an explicit region.
  324. ;;
  325. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  326. ;; region will be used.
  327. ;;
  328. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  329. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  330. ;;
  331. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  332. ;;
  333. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  334. ;;
  335. ;; Example specification:
  336. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  337. ; (replace spaces with underscore)
  338.  
  339. ;; Allow Hyperlinks to be created at the console
  340. HypergridLinker = true
  341.  
  342. ;; Allow supporting viewers to export content
  343. ;; Set to false to prevent export
  344. ExportSupported = true
  345.  
  346. ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
  347. ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  348.  
  349.  
  350. ; * This is the configuration for the freeswitch server in grid mode
  351. [FreeswitchService]
  352. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  353.  
  354. ;; The IP address of your FreeSWITCH server.
  355. ;; This address must be reachable by viewers.
  356. ; ServerAddress = 127.0.0.1
  357.  
  358. ;; The following configuration parameters are optional
  359.  
  360. ;; By default, this is the same as the ServerAddress
  361. ; Realm = 127.0.0.1
  362.  
  363. ;; By default, this is the same as the ServerAddress on port 5060
  364. ; SIPProxy = 127.0.0.1:5060
  365.  
  366. ;; Default is 5000ms
  367. ; DefaultTimeout = 5000
  368.  
  369. ;; The dial plan context. Default is "default"
  370. ; Context = default
  371.  
  372. ;; Currently unused
  373. ; UserName = freeswitch
  374.  
  375. ;; Currently unused
  376. ; Password = password
  377.  
  378. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  379. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  380. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  381. ;; production at your own risk
  382. ; EchoServer = 127.0.0.1
  383. ; EchoPort = 50505
  384. ; AttemptSTUN = false
  385.  
  386.  
  387. ; * This is the new style authentication service. Currently, only MySQL
  388. ; * is implemented.
  389. ; *
  390. [AuthenticationService]
  391. ; for the server connector
  392. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  393. ; Realm = "auth"
  394.  
  395. ;; Allow the service to process HTTP getauthinfo calls.
  396. ;; Default is false.
  397. ; AllowGetAuthInfo = false
  398.  
  399. ;; Allow the service to process HTTP setauthinfo calls.
  400. ;; Default is false.
  401. ; AllowSetAuthInfo = false
  402.  
  403. ;; Allow the service to process HTTP setpassword calls.
  404. ;; Default is false.
  405. ; AllowSetPassword = false
  406.  
  407.  
  408. [OpenIdService]
  409. ; for the server connector
  410. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  411. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  412.  
  413.  
  414. ; * This is the new style user service.
  415. ; * "Realm" is the table that is used for user lookup.
  416. ; * It defaults to "UserAccounts", which uses the new style.
  417. ; * Realm = "users" will use the legacy tables as an authentication source
  418. ; *
  419. [UserAccountService]
  420. ; for the server connector
  421. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  422. ; Realm = "UserAccounts"
  423.  
  424. ; These are for creating new accounts by the service
  425. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  426. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  427. GridService = "OpenSim.Services.GridService.dll:GridService"
  428. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  429. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  430. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  431.  
  432. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  433. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  434. ;; Default is false
  435. CreateDefaultAvatarEntries = true
  436.  
  437. ;; Allow the service to process HTTP createuser calls.
  438. ;; Default is false.
  439. ; AllowCreateUser = false
  440.  
  441. ;; Allow the service to process HTTP setaccount calls.
  442. ;; Default is false.
  443. ; AllowSetAccount = false
  444.  
  445.  
  446. [GridUserService]
  447. ; for the server connector
  448. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  449.  
  450.  
  451. [AgentPreferencesService]
  452. ; for the server connector
  453. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
  454.  
  455.  
  456. [PresenceService]
  457. ; for the server connector
  458. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  459.  
  460. [AvatarService]
  461. ; for the server connector
  462. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  463.  
  464.  
  465. [FriendsService]
  466. ; for the server connector
  467. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  468.  
  469. [EstateService]
  470. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  471.  
  472. [LibraryService]
  473. LibraryName = "OpenSim Library"
  474. DefaultLibrary = "./inventory/Libraries.xml"
  475.  
  476.  
  477. [LoginService]
  478. ; for the server connector
  479. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  480. ; for the service
  481. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  482. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  483. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  484. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  485. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  486. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  487. GridService = "OpenSim.Services.GridService.dll:GridService"
  488. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  489. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  490. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  491. ; The minimum user level required for a user to be able to login. 0 by default
  492. ; If you disable a particular user's account then you can set their login level below this number.
  493. ; You can also change this level from the console though these changes will not be persisted.
  494. ; MinLoginLevel = 0
  495.  
  496. ;; for hypergrid
  497. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  498.  
  499. ; This inventory service will be used to initialize the user's inventory
  500. HGInventoryServicePlugin = "HGInventoryService@OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
  501. ; NOTE: HGInventoryServiceConstructorArg is deprecated. For now it will work, but see above
  502. ; for the correct method if passing additional arguments.
  503. ;; end hypergrid
  504.  
  505. ; Ask co-operative viewers to use a different currency name
  506. Currency = "DM"
  507.  
  508. ;; Set minimum fee to publish classified
  509. ; ClassifiedFee = 0
  510.  
  511. WelcomeMessage = "Welcome, Avatar!"
  512. AllowRemoteSetLoginLevel = "false"
  513.  
  514. ; For V2 map
  515. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  516.  
  517. ; Url to search service
  518. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  519.  
  520. ; For V3 destination guide
  521. ;DestinationGuide = "${Const|BaseURL}/guide"
  522.  
  523. ; For V3 avatar picker (( work in progress ))
  524. ; AvatarPicker = "${Const|BaseURL}/avatars"
  525.  
  526. ; If you run this login server behind a proxy, set this to true
  527. ; HasProxy = false
  528.  
  529. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  530. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  531. GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
  532.  
  533. SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  534. SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  535. SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  536. SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  537. SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  538. SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  539. SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
  540.  
  541. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  542. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  543. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  544. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  545. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  546. ;; Options are
  547. ;; "none" no DST
  548. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  549. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  550. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  551. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  552.  
  553. ;Basic Login Service Dos Protection Tweaks
  554. ;;
  555. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  556. ;; 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
  557. ;; get around this basic DOS protection.
  558. ;DOSAllowXForwardedForHeader = false
  559. ;;
  560. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  561. ;DOSRequestTimeFrameMS = 10000
  562. ;;
  563. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  564. ;DOSMaxRequestsInTimeFrame = 5
  565. ;;
  566. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  567. ;DOSForgiveClientAfterMS = 120000
  568. ;;
  569. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  570.  
  571.  
  572. [MapImageService]
  573. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  574.  
  575. ; Set this if you want to change the default
  576. ; TilesStoragePath = "maptiles"
  577. ;
  578. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  579. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  580. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  581. ;
  582. ; Additionally, if you run this server behind a proxy, set this to true
  583. ; HasProxy = false
  584.  
  585.  
  586. [GridInfoService]
  587. ; These settings are used to return information on a get_grid_info call.
  588. ; Client launcher scripts and third-party clients make use of this to
  589. ; autoconfigure the client and to provide a nice user experience. If you
  590. ; want to facilitate that, you should configure the settings here according
  591. ; to your grid or standalone setup.
  592. ;
  593. ; See http://opensimulator.org/wiki/GridInfo
  594.  
  595. ; login uri: for grid this is the login server URI
  596. login = ${Const|BaseURL}:${Const|PublicPort}/
  597.  
  598. ; long grid name: the long name of your grid
  599. gridname = "Hyper BW Grid"
  600.  
  601. ; short grid name: the short name of your grid
  602. gridnick = "HyBWGrid"
  603.  
  604. ; login page: optional: if it exists it will be used to tell the client to use
  605. ; this as splash page
  606. welcome = ${Const|BaseURL}/
  607.  
  608. ; helper uri: optional: if it exists it will be used to tell the client to use
  609. ; this for all economy related things
  610. economy = ${Const|BaseURL}/helper/
  611.  
  612. ; web page of grid: optional: page providing further information about your grid
  613. about = ${Const|BaseURL}/
  614.  
  615. ; account creation: optional: page providing further information about obtaining
  616. ; a user account on your grid
  617. register = ${Const|BaseURL}/
  618.  
  619. ; help: optional: page providing further assistance for users of your grid
  620. help = ${Const|BaseURL}/help
  621.  
  622. ; password help: optional: page providing password assistance for users of your grid
  623. password = ${Const|BaseURL}/
  624.  
  625. ; HG address of the gatekeeper, if you have one
  626. ; this is the entry point for all the regions of the world
  627. gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/
  628.  
  629. ; HG user domain, if you have one
  630. ; this is the entry point for all user-related HG services
  631. ; uas = ${Const|BaseURL}:${Const|PublicPort}/
  632.  
  633.  
  634. [GatekeeperService]
  635. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  636. ;; for the service
  637. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  638. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  639. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  640. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  641. GridService = "OpenSim.Services.GridService.dll:GridService"
  642. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  643. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  644. ; how does the outside world reach me? This acts as public key too.
  645. ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
  646. ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}"
  647.  
  648. ; Does this grid allow incoming links to any region in it?
  649. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  650. AllowTeleportsToAnyRegion = true
  651.  
  652. ; If you run this gatekeeper server behind a proxy, set this to true
  653. ; HasProxy = false
  654.  
  655. ;; Are foreign visitors allowed?
  656. ;ForeignAgentsAllowed = true
  657. ;;
  658. ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
  659. ;; Leave blank or commented for no exceptions.
  660. ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
  661. ;;
  662. ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
  663. ;; Leave blank or commented for no exceptions.
  664. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
  665.  
  666.  
  667. [UserAgentService]
  668. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  669. ;; for the service
  670. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  671. GridService = "OpenSim.Services.GridService.dll:GridService"
  672. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  673. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  674. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  675. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  676.  
  677. ; If you run this user agent server behind a proxy, set this to true
  678. ; HasProxy = false
  679.  
  680. ;; If you separate the UserAgentService from the LoginService, set this to
  681. ;; the IP address of the machine where your LoginService is
  682. ;LoginServerIP = "127.0.0.1"
  683.  
  684. ; User level required to be contacted from other grids
  685. ;LevelOutsideContacts = 0
  686.  
  687. ;; Restrictions on destinations of local users.
  688. ;; Are local users allowed to visit other grids?
  689. ;; What user level? Use variables of this forrm:
  690. ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
  691. ;; (the default is true)
  692. ;; For example:
  693. ; ForeignTripsAllowed_Level_0 = false
  694. ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
  695. ;;
  696. ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
  697. ;; Leave blank or commented for no exceptions.
  698. ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
  699. ;;
  700. ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
  701. ;; Leave blank or commented for no exceptions.
  702. ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
  703.  
  704. ;; This variable controls what is exposed to profiles of local users
  705. ;; as seen from outside of this grid. Leave it uncommented for exposing
  706. ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
  707. ;; to block this info from being exposed.
  708. ; ShowUserDetailsInHGProfile = True
  709.  
  710.  
  711. ; * The interface that local users get when they are in other grids.
  712. ; * This restricts the inventory operations while in other grids.
  713. ; * Still not completely safe, especially if users perform inventory operations
  714. ; * while in those grids. The more the user accesses his/her inventory, the more
  715. ; * those simulators will know about the user's inventory.
  716. ; *
  717. [HGInventoryService]
  718. ; For the InventoryServiceInConnector
  719. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
  720. ;; alternatives:
  721. ;; HG1.5, more permissive, not recommended, but still supported
  722. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
  723. ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
  724. ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  725.  
  726. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  727. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  728.  
  729. ; HGInventoryService is a public-facing inventory service that allows users to
  730. ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector.
  731. ; Hence, if the user has set up authentication in [Network] to protect their private services
  732. ; make sure it is not set here.
  733. AuthType = None
  734.  
  735. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  736. HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  737.  
  738.  
  739. ; * The interface that local users get when they are in other grids.
  740. ; * This restricts the access that the rest of the world has to
  741. ; * the assets of this world.
  742. ; *
  743. [HGAssetService]
  744. ;; Use the second option if you have FSAsset service enabled
  745. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
  746. ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFSAssetService"
  747.  
  748. UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  749.  
  750. ; HGAssetService is a public-facing service that allows users to
  751. ; read and create assets when on another grid. This reuses the general asset service connector.
  752. ; Hence, if the user has set up authentication in [Network] to protect their private services
  753. ; make sure it is overriden for this public service.
  754. AuthType = None
  755.  
  756. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  757. HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  758.  
  759. ;; The asset types that this grid can export to / import from other grids.
  760. ;; Comma separated.
  761. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  762. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  763. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  764. ;;
  765. ;; Leave blank or commented if you don't want to apply any restrictions.
  766. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  767. ;; of scripts, like so:
  768. ; DisallowExport ="LSLText"
  769. ; DisallowImport ="LSLBytecode"
  770.  
  771.  
  772. [HGFriendsService]
  773. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
  774. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  775. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  776. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  777. GridService = "OpenSim.Services.GridService.dll:GridService"
  778. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  779.  
  780.  
  781. [HGInstantMessageService]
  782. LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
  783. GridService = "OpenSim.Services.GridService.dll:GridService"
  784. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  785. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  786. ; This should always be true in the Robust config
  787. InGatekeeper = True
  788.  
  789.  
  790. [Messaging]
  791. ; OfflineIM
  792. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  793.  
  794.  
  795. [Groups]
  796. ;; for the HG Groups service
  797. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  798. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  799.  
  800. ;; What is the HomeURI of users associated with this grid?
  801. ;; Can overwrite the default in [Hypergrid], but probably shouldn't
  802. ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
  803. ;; end hypergrid
  804.  
  805. ;; Sets the maximum number of groups an agent may join
  806. ; MaxAgentGroups = 42
  807.  
  808.  
  809. [UserProfilesService]
  810. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  811. Enabled = false
  812. ;; Configure this for separate profiles database
  813. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  814. ;; Realm = UserProfiles
  815. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  816. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  817.  
  818.  
  819. [BakedTextureService]
  820. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  821. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  822. BaseDirectory = "./bakes"
  823.  
  824. [MuteListService]
  825. LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement