Default isso configuration for a ghost blog with moderation enabled
# Isso Config | |
# vim: set filetype=ini | |
[general] | |
# database location, check permissions, automatically created if not exists | |
dbpath = /var/lib/isso/comments.db | |
# your website or blog (not the location of Isso!) | |
# you can add multiple hosts for local development | |
# or SSL connections. There is no wildcard to allow | |
# any domain. | |
host = | |
https://yourdomain.com/ | |
https://blog.yourdomain.com/ | |
http://localhost:2368/ | |
http://localhost:2369/ | |
max-age = 15 | |
notify = smtp | |
log-file = /var/log/isso/isso.log | |
[moderation] | |
enabled = true | |
purge-after = 180d | |
[server] | |
listen = unix:///tmp/isso.sock | |
reload = off | |
profile = off | |
[smtp] | |
username = | |
password = | |
host = localhost | |
port = 25 | |
security = none | |
to = -USER-@-YOURDOMAIN- | |
from = "Isso" <isso@-YOURDOMAIN-> | |
timeout = 10 | |
[guard] | |
enabled = true | |
ratelimit = 2 | |
direct-reply = 3 | |
reply-to-self = false | |
[markup] | |
options = strikethrough, autolink, fenced_code, no_intra_emphasis | |
# Additional HTML tags to allow in the generated output, comma-separated. By | |
# default, only a, blockquote, br, code, del, em, h1, h2, h3, h4, h5, h6, hr, | |
# ins, li, ol, p, pre, strong, table, tbody, td, th, thead and ul are allowed. | |
#allowed-elements = | |
# Additional HTML attributes (independent from elements) to allow in the | |
# generated output, comma-separated. By default, only align and href are | |
# allowed. | |
#allowed-attributes = | |
[hash] | |
salt = 32charofrandomcharactersandlette | |
algorithm = pbkdf2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment