You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.9 KiB

  1. # Configuration file for Log2Ram (https://github.com/azlux/log2ram) under MIT license.
  2. # This configuration file is read by the log2ram service
  3. # Size for the ram folder, it defines the size the log folder will reserve into the RAM.
  4. # If it's not enough, log2ram will not be able to use ram. Check you /var/log size folder.
  5. # The default is 40M and is basically enough for a lot of applications.
  6. # You will need to increase it if you have a server and a lot of log for example.
  7. # Note that tmpfs doesn't reserve this memory, but allocates only the needed memory.
  8. SIZE=100M
  9. # This variable can be set to true if you prefer "rsync" rather than "cp".
  10. # I use the command cp -u and rsync -X, so I don't copy the all folder every time for optimization.
  11. # You can choose which one you want. Be sure rsync is installed if you use it.
  12. USE_RSYNC=false
  13. # If there are some errors with available RAM space, a system mail will be send
  14. # Change it to false and you will have only a log if there is no place on RAM anymore.
  15. MAIL=true
  16. # **************** Zram backing conf *************************************************
  17. # ZL2R Zram Log 2 Ram enables a zram drive when ZL2R=true ZL2R=false is mem only tmpfs
  18. ZL2R=false
  19. # COMP_ALG this is any compression algorithm listed in /proc/crypto
  20. # lz4 is fastest with lightest load but deflate (zlib) and Zstandard (zstd) give far better compression ratios
  21. # lzo is very close to lz4 and may with some binaries have better optimisation
  22. # COMP_ALG=lz4 for speed or Zstd for compression, lzo or zlib if optimisation or availabilty is a problem
  23. COMP_ALG=lz4
  24. # LOG_DISK_SIZE is the uncompressed disk size. Note zram uses about 0.1% of the size of the disk when not in use
  25. # LOG_DISK_SIZE is expected compression ratio of alg chosen multiplied by log SIZE
  26. # lzo/lz4=2.1:1 compression ratio zlib=2.7:1 zstandard=2.9:1
  27. # Really a guestimate of a bit bigger than compression ratio whilst minimising 0.1% mem usage of disk size
  28. LOG_DISK_SIZE=100M