Regions.ini.example 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. ; * This is an example region config file.
  2. ; *
  3. ; * If OpenSimulator is started up without any regions, it will ask you configuration questions to generate a Regions.ini file for you.
  4. ; * So there is no need to change this file directly, it is only for reference.
  5. ; * However, if you prefer you can also copy this file to Regions.ini and appropriately change the parameters below.
  6. ; * Only files ending with .ini and .xml in this directly will be loaded by OpenSimulator.
  7. ; *
  8. ; * You can multiple regions into one file or make one file per region
  9. ; * The section name is the region name
  10. ; *
  11. [Default Region]
  12. ; *
  13. ; * You MUST change this! It will NOT be done for you!
  14. ; *
  15. RegionUUID = 11111111-2222-3333-4444-555555555555
  16. Location = 1000,1000
  17. InternalAddress = 0.0.0.0
  18. InternalPort = 9000
  19. AllowAlternatePorts = False
  20. ExternalHostName = SYSTEMIP
  21. ;; Estate ID or Name to connect region to, leave blank for console prompt, remember estate id can not be less than 100
  22. ;; this value is only used when creating a region and after that will be ignored. 0 Will use the next auto id provided by the database
  23. ;TargetEstate = 0
  24. ; *
  25. ; * Variable-sized regions allows the creation of large, borderless spaces.
  26. ; * The default is 256 meters. For larger spaces, set these to multiples of 256.
  27. ; * For the time being, X and Y need to be the same.
  28. ; *
  29. ; SizeX = 512
  30. ; SizeY = 512
  31. ; * Default region landing point used when no teleport coords are specified
  32. ; DefaultLanding = <128,128,30>
  33. ; *
  34. ; * Prim data
  35. ; * This allows limiting the sizes of prims and the region prim count
  36. ; *
  37. ; NonPhysicalPrimMax = 256
  38. ; PhysicalPrimMax = 64
  39. ; ClampPrimSize = False
  40. ; MaxPrims = 15000
  41. ; MaxAgents = 100
  42. ; * Max prims per user (per parcel).
  43. ; * Negative values will disable the check.
  44. ; MaxPrimsPerUser = -1
  45. ; *
  46. ; * Multi-Tenancy. Only set if needed
  47. ; *
  48. ; ScopeID = "00000000-0000-0000-0000-000000000000"
  49. ; *
  50. ; * Product name (used in search from viewer 1.23
  51. ; *
  52. ; RegionType = "Mainland"
  53. ; * Region Specific Static Maptiles:
  54. ; * Important: To use any kind of texture *assets* as a static maptile, the following
  55. ; * things must be set in the [Map] section of OpenSim.ini :
  56. ; *
  57. ; * MapImageModule = "MapImageModule"
  58. ; * GenerateMaptiles = false
  59. ; *
  60. ; * Now, there is a setting in [Map] in OpenSim.ini called
  61. ; *
  62. ; * MaptileStaticUUID = 00000000-0000-0000-0000-000000000000
  63. ; *
  64. ; * where, given the criteria above, lets you specify the UUID of a texture asset to use
  65. ; * as a maptile *Simulator Wide*. Here, you can override that on a per region basis for
  66. ; * Simulators that run multiple regions:
  67. ; MaptileStaticUUID = 00000000-0000-0000-0000-000000000000
  68. ; * Region Specific Static Maptiles from file:
  69. ; * It is also possible to create maptiles using external image files of the right size
  70. ; * and supported formats (bmp,png,jpg in RGB 24bpp format)
  71. ; *
  72. ; * Important: To use any kind of texture *files* as a static maptile, the following
  73. ; * things must be set in the [Map] section of OpenSim.ini :
  74. ; *
  75. ; * MapImageModule = "MapImageModule"
  76. ; * GenerateMaptiles = true
  77. ; *
  78. ; * The image must be the same size in pixels as the region or varregion is in meters.
  79. ; * i.e. 256x256 pixels for single region of 256x256m, or 1280x1280 pixels for a varregion
  80. ; * of size 1280x1280m. The image can be loaded from anywhere by setting the path
  81. ; * ie: MaptileStaticFile = "maptiles/SomeFile.png"
  82. ; *
  83. ; * If this setting is used, then the base map is generated from this file instead of being
  84. ; * built using MapImageModule's terrain and prim renderer. Parcel 'for sale' overlays are
  85. ; * still drawn on top of the static map by the World Map module.
  86. ; MaptileStaticFile = "SomeFile.png"