Advertisement
Guest User

example isso config file

a guest
Jul 5th, 2017
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [general]
  2. ; database location, check permissions, automatically created if not exists
  3. dbpath = /path/to/your/isso/comments/comments_sitename.db
  4. ; your website or blog (not the location of Isso!)
  5. ;host = https://example.com/
  6. ; you can add multiple hosts for local development
  7. ; or SSL connections. There is no wildcard to allow
  8. ; any domain.
  9. host =
  10.     http://example.com/
  11.     https://example.com/
  12.  
  13. notify = smtp
  14.  
  15. [moderation]
  16. enabled = true
  17.  
  18. [server]
  19. listen = http://localhost:8702/
  20.  
  21. [smtp]
  22. username = blah
  23. password = blah
  24. host = smtp.example.com
  25. port = 587
  26. security = starttls
  27. to = you@example.com
  28. from = "yoursitename" <site@example.com>
  29. timeout = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement