Files
GoMembership/configs/config.template.json
$(pass /github/name) 4274f386f7 add: Rate limiting & tests
2024-08-23 11:58:53 +02:00

33 lines
617 B
JSON

{
"BaseURL": "https://domain.de",
"db": {
"Path": "data/db.sqlite3"
},
"smtp": {
"Host": "mail.server.com",
"User": "username",
"Password": "password",
"Port": 465,
"Mailtype": "html",
"AdminEmail": "admin@server.com"
},
"templates": {
"MailPath": "templates/email",
"HTMLPath": "templates/html",
"StaticPath": "templates/css"
},
"auth": {
"APIKey": ""
},
"recipients": {
"ContactForm": "contacts@server.com",
"UserRegistration": "registration@server.com"
},
"security": {
"RateLimits": {
"Limit": 1,
"Burst": 60
}
}
}