-
Notifications
You must be signed in to change notification settings - Fork 111
Comments
Isso (also on GitHub) is an opensource self-hosted comment software for your static blog. It's meant as a privacy-respecting replacement for Disqus.
To activate it you just need to specify an issoHost
in your configuration file.
[params]
...
issoHost = "your-domain.org:1234"
To see how you can install and configure it, please review the docs.
Disqus is an external comment system. It enables you to have comments on your static blog without the need to run additional software on your server.
To activate it you just need to specify a disqusShortname
in your configuration file.
disqusShortname = "XYW"
Note that this isn't a parameter (under param
), but a top level site variable. More information is available in Hugo's documentation.
Commento is an open source, privacy focused discussion comment platform that you can self-host (similar to Isso).
To activate it you just need to specify an commentoHost
in your configuration file.
[params]
...
commentoHost = "your-domain.org:1234"
To see how you can install and configure it, please review the docs.
Utterances is a Github-issues-backed comment system. To activate it, set the following parameters:
[params.utteranc]
enable = true
repo = "your/repository"
issueTerm = "title"
exampleSite
includes and example.