Advertisement
Guest User

Untitled

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