github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/config/config_example.json (about) 1 { 2 "Site": { 3 "ShortName":"Exa", 4 "Name":"Example", 5 "URL":"localhost", 6 "Port":"80", 7 "EnableSsl":false, 8 "EnableEmails":false, 9 "HasProxy":false, 10 "Language": "english" 11 }, 12 "Config": { 13 "SslPrivkey": "", 14 "SslFullchain": "", 15 "SMTPServer": "", 16 "SMTPUsername": "", 17 "SMTPPassword": "", 18 "SMTPPort": "25", 19 20 "MaxRequestSizeStr":"5MB", 21 "UserCache":"static", 22 "TopicCache":"static", 23 "ReplyCache":"static", 24 "UserCacheCapacity":180, 25 "TopicCacheCapacity":400, 26 "ReplyCacheCapacity":20, 27 "DefaultPath":"/topics/", 28 "DefaultGroup":3, 29 "ActivationGroup":5, 30 "StaffCSS":"staff_post", 31 "DefaultForum":2, 32 "MinifyTemplates":true, 33 "BuildSlugs":true, 34 "ServerCount":1, 35 "Noavatar":"https://api.adorable.io/avatars/{width}/{id}.png", 36 "ItemsPerPage":25 37 }, 38 "Database": { 39 "Adapter": "mysql", 40 "Host": "localhost", 41 "Username": "anything_but_root", 42 "Password": "please_use_a_password_that_is_actually_secure", 43 "Dbname": "gosora", 44 "Port": "3306", 45 46 "TestAdapter": "mysql", 47 "TestHost": "localhost", 48 "TestUsername": "root", 49 "TestPassword": "", 50 "TestDbname": "gosora_test", 51 "TestPort": "3306" 52 }, 53 "Dev": { 54 "DebugMode":true, 55 "SuperDebug":false 56 } 57 }