Advertisement
Guest User

Untitled

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