Advertisement
Guest User

Untitled

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