Simple image host.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

conf.json.example 395B

12345678910111213141516171819202122232425262728
  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. }