Files
BanForge/internal/config/template.go
d3m0k1d 7f54db0cd4
Some checks failed
build / build (push) Failing after 1m48s
feat: add new method and for db req and add to template max retry
2026-02-19 10:53:55 +03:00

25 lines
442 B
Go

package config
const Base_config = `
# This is a TOML config file for BanForge
# [https://github.com/d3m0k1d/BanForge](https://github.com/d3m0k1d/BanForge)
[firewall]
name = ""
config = "/etc/nftables.conf"
[[service]]
name = "nginx"
logging = "file"
log_path = "/var/log/nginx/access.log"
max_retry = 3
enabled = true
[[service]]
name = "nginx"
logging = "journald"
log_path = "/var/log/nginx/access.log"
max_retry = 3
enabled = false
`