Advertisement
Guest User

Untitled

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