Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

conf.json.example 413B

1234567891011121314151617181920212223242526272829
  1. {
  2. "webroot": "web",
  3. "port": 8081,
  4. "db": {
  5. "host": "localhost",
  6. "user": "dbuser",
  7. "password": "dbpass",
  8. "database": "spus"
  9. },
  10. "use_https": false,
  11. "https": {
  12. "key": "",
  13. "cert": ""
  14. },
  15. "web": {
  16. "title": "Spus",
  17. "base_url": "http://example.com"
  18. },
  19. "scrypt": {
  20. "maxtime": 1
  21. },
  22. "minify": true,
  23. "session_timeout": 1800000,
  24. "dir": {
  25. "imgs": "imgs"
  26. },
  27. "debug": false,
  28. "maxRuns": 9999
  29. }