plugins.conf.example 607 B

1234567891011121314151617181920
  1. ## Plugin management
  2. plugins {
  3. ## Plugins declaration
  4. ## Note: The plugins are started in the defined order
  5. states = [
  6. {
  7. ## Name and version of this plugin
  8. ## Type: Formatted String
  9. ## Format: {name}-{version}
  10. ## Note: name and version should be what it is in the plugin application
  11. name_vsn = "my_acl-0.1.0",
  12. enable = true ## enable this plugin
  13. },
  14. {name_vsn = "my_rule-0.1.1", enable = false}
  15. ]
  16. ## The installation directory for the external plugins
  17. install_dir = "plugins"
  18. }