您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
937 B

  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. SIZE=10M
  8. # This variable can be set to true if you prefer "rsync" rather than "cp".
  9. # I use the command cp -u and rsync -X, so I don't copy the all folder every time for optimization.
  10. # You can choose which one you want. Be sure rsync is installed if you use it.
  11. USE_RSYNC=true
  12. # If there are some errors with available RAM space, a system mail will be send
  13. # Change it to false and you will have only a log if there is no place on RAM anymore.
  14. MAIL=false