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 346B

123456789101112131415161718192021222324
  1. {
  2. "webroot": "web",
  3. "port": 8081,
  4. "db": {
  5. "host": "localhost",
  6. "user": "dbuser",
  7. "password": "dbpass",
  8. "database": "mimg"
  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. "minify": true,
  20. "session_timeout": 1800000,
  21. "dir": {
  22. "imgs": "imgs"
  23. }
  24. }