Guest User

Untitled

a guest
Jan 24th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.62 KB | None | 0 0
  1. # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/dynmap/
  2.  
  3. # All map templates are defined in the templates directory
  4. # To use the HDMap very-low-res (2 ppb) map templates as world defaults, set value to vlowres
  5. # The definitions of these templates are in normal-vlowres.txt, nether-vlowres.txt, and the_end-vlowres.txt
  6. # To use the HDMap low-res (4 ppb) map templates as world defaults, set value to lowres
  7. # The definitions of these templates are in normal-lowres.txt, nether-lowres.txt, and the_end-lowres.txt
  8. # To use the HDMap hi-res (16 ppb) map templates (these can take a VERY long time for initial fullrender), set value to hires
  9. # The definitions of these templates are in normal-hires.txt, nether-hires.txt, and the_end-hires.txt
  10. # To use the HDMap low-res (4 ppb) map templates, with support for boosting resolution selectively to hi-res (16 ppb), set value to low_boost_hi
  11. # The definitions of these templates are in normal-low_boost_hi.txt, nether-low_boost_hi.txt, and the_end-low_boost_hi.txt
  12. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to vhi-res (32 ppb), set value to hi_boost_vhi
  13. # The definitions of these templates are in normal-hi_boost_vhi.txt, nether-hi_boost_vhi.txt, and the_end-hi_boost_vhi.txt
  14. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to xhi-res (64 ppb), set value to hi_boost_xhi
  15. # The definitions of these templates are in normal-hi_boost_xhi.txt, nether-hi_boost_xhi.txt, and the_end-hi_boost_xhi.txt
  16. deftemplatesuffix: hires
  17.  
  18. # Map storage scheme: only uncommoent one 'type' value
  19. # filetree: classic and default scheme: tree of files, with all map data under the directory indicated by 'tilespath' setting
  20. # sqlite: single SQLite database file (this can get VERY BIG), located at 'dbfile' setting (default is file dynmap.db in data directory)
  21. # mysql: MySQL database, at hostname:port in database, accessed via userid with password
  22. # mariadb: MariaDB database, at hostname:port in database, accessed via userid with password
  23. # postgres: PostgreSQL database, at hostname:port in database, accessed via userid with password
  24. storage:
  25. # Filetree storage (standard tree of image files for maps)
  26. type: filetree
  27. # SQLite db for map storage (uses dbfile as storage location)
  28. #type: sqlite
  29. #dbfile: dynmap.db
  30. # MySQL DB for map storage (at 'hostname':'port' in database 'database' using user 'userid' password 'password' and table prefix 'prefix'
  31. #type: mysql
  32. #hostname: localhost
  33. #port: 3306
  34. #database: dynmap
  35. #userid: dynmap
  36. #password: dynmap
  37. #prefix: ""
  38.  
  39. components:
  40. - class: org.dynmap.ClientConfigurationComponent
  41.  
  42. # Remember to change the following class to org.dynmap.JsonFileClientUpdateComponent when using an external web server.
  43. - class: org.dynmap.InternalClientUpdateComponent
  44. sendhealth: true
  45. sendposition: true
  46. allowwebchat: true
  47. webchat-interval: 5
  48. hidewebchatip: false
  49. trustclientname: false
  50. includehiddenplayers: false
  51. # (optional) if true, color codes in player display names are used
  52. use-name-colors: false
  53. # (optional) if true, player login IDs will be used for web chat when their IPs match
  54. use-player-login-ip: true
  55. # (optional) if use-player-login-ip is true, setting this to true will cause chat messages not matching a known player IP to be ignored
  56. require-player-login-ip: false
  57. # (optional) block player login IDs that are banned from chatting
  58. block-banned-player-chat: true
  59. # Require login for web-to-server chat (requires login-enabled: true)
  60. webchat-requires-login: false
  61. # If set to true, users must have dynmap.webchat permission in order to chat
  62. webchat-permissions: false
  63. # Limit length of single chat messages
  64. chatlengthlimit: 256
  65. # # Optional - make players hidden when they are inside/underground/in shadows (#=light level: 0=full shadow,15=sky)
  66. # hideifshadow: 4
  67. # # Optional - make player hidden when they are under cover (#=sky light level,0=underground,15=open to sky)
  68. # hideifundercover: 14
  69. # # (Optional) if true, players that are crouching/sneaking will be hidden
  70. hideifsneaking: false
  71. # If true, player positions/status is protected (login with ID with dynmap.playermarkers.seeall permission required for info other than self)
  72. protected-player-info: false
  73. # If true, hide players with invisibility potion effects active
  74. hide-if-invisiblity-potion: true
  75. # If true, player names are not shown on map, chat, list
  76. hidenames: false
  77. #- class: org.dynmap.JsonFileClientUpdateComponent
  78. # writeinterval: 1
  79. # sendhealth: true
  80. # sendposition: true
  81. # allowwebchat: true
  82. # webchat-interval: 5
  83. # hidewebchatip: false
  84. # includehiddenplayers: false
  85. # use-name-colors: false
  86. # use-player-login-ip: false
  87. # require-player-login-ip: false
  88. # block-banned-player-chat: true
  89. # hideifshadow: 0
  90. # hideifundercover: 0
  91. # hideifsneaking: false
  92. # # Require login for web-to-server chat (requires login-enabled: true)
  93. # webchat-requires-login: false
  94. # # If set to true, users must have dynmap.webchat permission in order to chat
  95. # webchat-permissions: false
  96. # # Limit length of single chat messages
  97. # chatlengthlimit: 256
  98. # hide-if-invisiblity-potion: true
  99. # hidenames: false
  100.  
  101. - class: org.dynmap.SimpleWebChatComponent
  102. allowchat: true
  103. # If true, web UI users can supply name for chat using 'playername' URL parameter. 'trustclientname' must also be set true.
  104. allowurlname: false
  105.  
  106. # Note: this component is needed for the dmarker commands, and for the Marker API to be available to other plugins
  107. - class: org.dynmap.MarkersComponent
  108. type: markers
  109. showlabel: false
  110. enablesigns: false
  111. # Default marker set for sign markers
  112. default-sign-set: markers
  113. # (optional) add spawn point markers to standard marker layer
  114. showspawn: true
  115. spawnicon: world
  116. spawnlabel: "Spawn"
  117. # (optional) layer for showing offline player's positions (for 'maxofflinetime' minutes after logoff)
  118. showofflineplayers: false
  119. offlinelabel: "Offline"
  120. offlineicon: offlineuser
  121. offlinehidebydefault: true
  122. offlineminzoom: 0
  123. maxofflinetime: 30
  124. # (optional) layer for showing player's spawn beds
  125. showspawnbeds: false
  126. spawnbedlabel: "Spawn Beds"
  127. spawnbedicon: bed
  128. spawnbedhidebydefault: true
  129. spawnbedminzoom: 0
  130. spawnbedformat: "%name%'s bed"
  131. # (optional) Show world border (vanilla 1.8+)
  132. showworldborder: true
  133. worldborderlabel: "Border"
  134.  
  135. - class: org.dynmap.ClientComponent
  136. type: chat
  137. allowurlname: false
  138. - class: org.dynmap.ClientComponent
  139. type: chatballoon
  140. focuschatballoons: false
  141. - class: org.dynmap.ClientComponent
  142. type: chatbox
  143. showplayerfaces: true
  144. messagettl: 5
  145. # Optional: set number of lines in scrollable message history: if set, messagettl is not used to age out messages
  146. #scrollback: 100
  147. # Optional: set maximum number of lines visible for chatbox
  148. #visiblelines: 10
  149. # Optional: send push button
  150. sendbutton: false
  151. - class: org.dynmap.ClientComponent
  152. type: playermarkers
  153. showplayerfaces: true
  154. showplayerhealth: true
  155. # If true, show player body too (only valid if showplayerfaces=true)
  156. showplayerbody: false
  157. # Option to make player faces small - don't use with showplayerhealth or largeplayerfaces
  158. smallplayerfaces: false
  159. # Option to make player faces larger - don't use with showplayerhealth or smallplayerfaces
  160. largeplayerfaces: false
  161. # Optional - make player faces layer hidden by default
  162. hidebydefault: false
  163. # Optional - ordering priority in layer menu (low goes before high - default is 0)
  164. layerprio: 0
  165. # Optional - label for player marker layer (default is 'Players')
  166. label: "Players"
  167.  
  168. #- class: org.dynmap.ClientComponent
  169. # type: digitalclock
  170. - class: org.dynmap.ClientComponent
  171. type: link
  172.  
  173. - class: org.dynmap.ClientComponent
  174. type: timeofdayclock
  175. showdigitalclock: true
  176. #showweather: true
  177. # Mouse pointer world coordinate display
  178. - class: org.dynmap.ClientComponent
  179. type: coord
  180. label: "Location"
  181. hidey: false
  182. show-mcr: false
  183. show-chunk: false
  184.  
  185. # Note: more than one logo component can be defined
  186. #- class: org.dynmap.ClientComponent
  187. # type: logo
  188. # text: "Dynmap"
  189. # #logourl: "images/block_surface.png"
  190. # linkurl: "http://forums.bukkit.org/threads/dynmap.489/"
  191. # # Valid positions: top-left, top-right, bottom-left, bottom-right
  192. # position: bottom-right
  193.  
  194. #- class: org.dynmap.ClientComponent
  195. # type: inactive
  196. # timeout: 1800 # in seconds (1800 seconds = 30 minutes)
  197. # redirecturl: inactive.html
  198. # #showmessage: 'You were inactive for too long.'
  199.  
  200. #- class: org.dynmap.TestComponent
  201. # stuff: "This is some configuration-value"
  202.  
  203. # Treat hiddenplayers.txt as a whitelist for players to be shown on the map? (Default false)
  204. display-whitelist: false
  205.  
  206. # How often a tile gets rendered (in seconds).
  207. renderinterval: 1
  208.  
  209. # How many tiles on update queue before accelerate render interval
  210. renderacceleratethreshold: 60
  211.  
  212. # How often to render tiles when backlog is above renderacceleratethreshold
  213. renderaccelerateinterval: 0.2
  214.  
  215. # How many update tiles to work on at once (if not defined, default is 1/2 the number of cores)
  216. tiles-rendered-at-once: 2
  217.  
  218. # If true, use normal priority threads for rendering (versus low priority) - this can keep rendering
  219. # from starving on busy Windows boxes (Linux JVMs pretty much ignore thread priority), but may result
  220. # in more competition for CPU resources with other processes
  221. usenormalthreadpriority: true
  222.  
  223. # Save and restore pending tile renders - prevents their loss on server shutdown or /reload
  224. saverestorepending: true
  225.  
  226. # Save period for pending jobs (in seconds): periodic saving for crash recovery of jobs
  227. save-pending-period: 900
  228.  
  229. # Zoom-out tile update period - how often to scan for and process tile updates into zoom-out tiles (in seconds)
  230. zoomoutperiod: 30
  231.  
  232. # Control whether zoom out tiles are validated on startup (can be needed if zoomout processing is interrupted, but can be expensive on large maps)
  233. initial-zoomout-validate: true
  234.  
  235. # Default delay on processing of updated tiles, in seconds. This can reduce potentially expensive re-rendering
  236. # of frequently updated tiles (such as due to machines, pistons, quarries or other automation). Values can
  237. # also be set on individual worlds and individual maps.
  238. tileupdatedelay: 30
  239.  
  240. # Tile hashing is used to minimize tile file updates when no changes have occurred - set to false to disable
  241. enabletilehash: true
  242.  
  243. # Optional - hide ores: render as normal stone (so that they aren't revealed by maps)
  244. #hideores: true
  245.  
  246. # Optional - enabled BetterGrass style rendering of grass and snow block sides
  247. #better-grass: true
  248.  
  249. # Optional - enable smooth lighting by default on all maps supporting it (can be set per map as lighting option)
  250. smooth-lighting: true
  251.  
  252. # Optional - use world provider lighting table (good for custom worlds with custom lighting curves, like nether)
  253. # false=classic Dynmap lighting curve
  254. use-brightness-table: true
  255.  
  256. # Optional - render specific block names using the textures and models of another block name: can be used to hide/disguise specific
  257. # blocks (e.g. make ores look like stone, hide chests) or to provide simple support for rendering unsupported custom blocks
  258. block-alias:
  259. # "minecraft:quartz_ore": "stone"
  260. # "diamond_ore": "coal_ore"
  261.  
  262. # Default image format for HDMaps (png, jpg, jpg-q75, jpg-q80, jpg-q85, jpg-q90, jpg-q95, jpg-q100, webp, webp-q75, webp-q80, webp-q85, webp-q90, webp-q95, webp-q100, webp-l),
  263. # Note: any webp format requires the presence of the 'webp command line tools' (cwebp, dwebp) (https://developers.google.com/speed/webp/download)
  264. #
  265. # Has no effect on maps with explicit format settings
  266. image-format: jpg-q90
  267.  
  268. # If cwebp or dwebp are not on the PATH, use these settings to provide their full path. Do not use these settings if the tools are on the PATH
  269. # For Windows, include .exe
  270. #
  271. #cwebpPath: /usr/bin/cwebp
  272. #dwebpPath: /usr/bin/dwebp
  273.  
  274. # use-generated-textures: if true, use generated textures (same as client); false is static water/lava textures
  275. # correct-water-lighting: if true, use corrected water lighting (same as client); false is legacy water (darker)
  276. # transparent-leaves: if true, leaves are transparent (lighting-wise): false is needed for some Spout versions that break lighting on leaf blocks
  277. use-generated-textures: true
  278. correct-water-lighting: true
  279. transparent-leaves: true
  280.  
  281. # ctm-support: if true, Connected Texture Mod (CTM) in texture packs is enabled (default)
  282. ctm-support: true
  283. # custom-colors-support: if true, Custom Colors in texture packs is enabled (default)
  284. custom-colors-support: true
  285.  
  286. # Control loading of player faces (if set to false, skins are never fetched)
  287. #fetchskins: false
  288.  
  289. # Control updating of player faces, once loaded (if faces are being managed by other apps or manually)
  290. #refreshskins: false
  291.  
  292. # Customize URL used for fetching player skins (%player% is macro for name, %uuid% for UUID)
  293. skin-url: "http://skins.minecraft.net/MinecraftSkins/%player%.png"
  294.  
  295. # Control behavior for new (1.0+) compass orientation (sunrise moved 90 degrees: east is now what used to be south)
  296. # default is 'newrose' (preserve pre-1.0 maps, rotate rose)
  297. # 'newnorth' is used to rotate maps and rose (requires fullrender of any HDMap map - same as 'newrose' for FlatMap or KzedMap)
  298. compass-mode: newnorth
  299.  
  300. # Triggers for automatic updates : blockupdate-with-id is debug for breaking down updates by ID:meta
  301. # To disable, set just 'none' and comment/delete the rest
  302. render-triggers:
  303. - blockupdate
  304. #- blockupdate-with-id
  305. #- lightingupdate
  306. - chunkpopulate
  307. - chunkgenerate
  308. #- none
  309.  
  310. # Title for the web page - if not specified, defaults to the server's name (unless it is the default of 'Unknown Server')
  311. #webpage-title: "My Awesome Server Map"
  312.  
  313. # The path where the tile-files are placed.
  314. tilespath: web/tiles
  315.  
  316. # The path where the web-files are located.
  317. webpath: web
  318.  
  319. # If set to false, disable extraction of webpath content (good if using custom web UI or 3rd party web UI)
  320. # Note: web interface is unsupported in this configuration - you're on your own
  321. update-webpath-files: true
  322.  
  323. # The path were the /dynmapexp command exports OBJ ZIP files
  324. exportpath: export
  325.  
  326. # The network-interface the webserver will bind to (0.0.0.0 for all interfaces, 127.0.0.1 for only local access).
  327. # If not set, uses same setting as server in server.properties (or 0.0.0.0 if not specified)
  328. #webserver-bindaddress: 0.0.0.0
  329.  
  330. # The TCP-port the webserver will listen on.
  331. webserver-port: 8123
  332.  
  333. # Maximum concurrent session on internal web server - limits resources used in Bukkit server
  334. max-sessions: 30
  335.  
  336. # Disables Webserver portion of Dynmap (Advanced users only)
  337. disable-webserver: false
  338.  
  339. # Enable/disable having the web server allow symbolic links (true=compatible with existing code, false=more secure (default))
  340. allow-symlinks: true
  341.  
  342. # Enable login support
  343. login-enabled: false
  344. # Require login to access website (requires login-enabled: true)
  345. login-required: false
  346.  
  347. # Period between tile renders for fullrender, in seconds (non-zero to pace fullrenders, lessen CPU load)
  348. timesliceinterval: 0.0
  349.  
  350. # Maximum chunk loads per server tick (1/20th of a second) - reducing this below 90 will impact render performance, but also will reduce server thread load
  351. maxchunkspertick: 200
  352.  
  353. # Progress report interval for fullrender/radiusrender, in tiles. Must be 100 or greater
  354. progressloginterval: 100
  355.  
  356. # Parallel fullrender: if defined, number of concurrent threads used for fullrender or radiusrender
  357. # Note: setting this will result in much more intensive CPU use, some additional memory use. Caution should be used when
  358. # setting this to equal or exceed the number of physical cores on the system.
  359. #parallelrendercnt: 4
  360.  
  361. # Interval the browser should poll for updates.
  362. updaterate: 2000
  363.  
  364. # If nonzero, server will pause fullrender/radiusrender processing when 'fullrenderplayerlimit' or more users are logged in
  365. fullrenderplayerlimit: 0
  366. # If nonzero, server will pause update render processing when 'updateplayerlimit' or more users are logged in
  367. updateplayerlimit: 0
  368. # Target limit on server thread use - msec per tick
  369. per-tick-time-limit: 50
  370. # If TPS of server is below this setting, update renders processing is paused
  371. update-min-tps: 18.0
  372. # If TPS of server is below this setting, full/radius renders processing is paused
  373. fullrender-min-tps: 18.0
  374. # If TPS of server is below this setting, zoom out processing is paused
  375. zoomout-min-tps: 18.0
  376.  
  377. showplayerfacesinmenu: true
  378.  
  379. # Control whether players that are hidden or not on current map are grayed out (true=yes)
  380. grayplayerswhenhidden: true
  381.  
  382. # Set sidebaropened: 'true' to pin menu sidebar opened permanently, 'pinned' to default the sidebar to pinned, but allow it to unpin
  383. #sidebaropened: true
  384.  
  385. # Customized HTTP response headers - add 'id: value' pairs to all HTTP response headers (internal web server only)
  386. #http-response-headers:
  387. # Access-Control-Allow-Origin: "my-domain.com"
  388. # X-Custom-Header-Of-Mine: "MyHeaderValue"
  389.  
  390. # Trusted proxies for web server - which proxy addresses are trusted to supply valid X-Forwarded-For fields
  391. trusted-proxies:
  392. - "127.0.0.1"
  393. - "0:0:0:0:0:0:0:1"
  394.  
  395. joinmessage: "%playername% joined"
  396. quitmessage: "%playername% quit"
  397. spammessage: "You may only chat once every %interval% seconds."
  398. # format for messages from web: %playername% substitutes sender ID (typically IP), %message% includes text
  399. webmsgformat: "&color;2[WEB] %playername%: &color;f%message%"
  400.  
  401. # Control whether layer control is presented on the UI (default is true)
  402. showlayercontrol: true
  403.  
  404. # Enable checking for banned IPs via banned-ips.txt (internal web server only)
  405. check-banned-ips: true
  406.  
  407. # Default selection when map page is loaded
  408. defaultzoom: 0
  409. defaultworld: world
  410. defaultmap: flat
  411. # (optional) Zoom level and map to switch to when following a player, if possible
  412. #followzoom: 3
  413. #followmap: surface
  414.  
  415. # If true, make persistent record of IP addresses used by player logins, to support web IP to player matching
  416. persist-ids-by-ip: true
  417.  
  418. # If true, map text to cyrillic
  419. cyrillic-support: false
  420.  
  421. # Messages to customize
  422. msg:
  423. maptypes: "Map Types"
  424. players: "Players"
  425. chatrequireslogin: "Chat Requires Login"
  426. chatnotallowed: "You are not permitted to send chat messages"
  427. hiddennamejoin: "Player joined"
  428. hiddennamequit: "Player quit"
  429.  
  430. # URL for client configuration (only need to be tailored for proxies or other non-standard configurations)
  431. url:
  432. # configuration URL
  433. #configuration: "up/configuration"
  434. # update URL
  435. #update: "up/world/{world}/{timestamp}"
  436. # sendmessage URL
  437. #sendmessage: "up/sendmessage"
  438. # login URL
  439. #login: "up/login"
  440. # register URL
  441. #register: "up/register"
  442. # tiles base URL
  443. #tiles: "tiles/"
  444. # markers base URL
  445. #markers: "tiles/"
  446. # Snapshot cache size, in chunks
  447. snapshotcachesize: 500
  448. # Snapshot cache uses soft references (true), else weak references (false)
  449. soft-ref-cache: true
  450.  
  451. # Player enter/exit title messages for map markers
  452. #
  453. # Processing period - how often to check player positions vs markers - default is 1000ms (1 second)
  454. #enterexitperiod: 1000
  455. # Title message fade in time, in ticks (0.05 second intervals) - default is 10 (1/2 second)
  456. #titleFadeIn: 10
  457. # Title message stay time, in ticks (0.05 second intervals) - default is 70 (3.5 seconds)
  458. #titleStay: 70
  459. # Title message fade out time, in ticks (0.05 seocnd intervals) - default is 20 (1 second)
  460. #titleFadeOut: 20
  461. # Enter/exit messages use on screen titles (true - default), if false chat messages are sent instead
  462. #enterexitUseTitle: true
  463. # Set true if new enter messages should supercede pending exit messages (vs being queued in order), default false
  464. #enterReplacesExits: true
  465.  
  466. # Send this message if the player does not have permission to use the command
  467. noPermissionMsg: "You don't have permission to use this command!"
  468.  
  469. # Set to true to enable verbose startup messages - can help with debugging map configuration problems
  470. # Set to false for a much quieter startup log
  471. verbose: false
  472.  
  473. # Enables debugging.
  474. #debuggers:
  475. # - class: org.dynmap.debug.LogDebugger
  476. # Debug: dump blocks missing render data
  477. dump-missing-blocks: false
  478.  
  479. # Log4J defense: string substituted for attempts to use macros in web chat
  480. hackAttemptBlurb: "(IaM5uchA1337Haxr-Ban Me!)"
  481.  
Add Comment
Please, Sign In to add comment