config.sample.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. module.exports = {
  2. /*
  3. If set to true the user will need to specify the auto-generated token
  4. on each API call, meaning random strangers wont be able to use the service
  5. unless they have the token loli-safe provides you with.
  6. If it's set to false, then upload will be public for anyone to use.
  7. */
  8. private: true,
  9. // The registered domain where you will be serving the app. Use IP if none.
  10. domains: [
  11. // Files will be served at https://i.kanacchi.moe/file.png
  12. { base: 'https://i.kanacchi.moe/', prefix: ''},
  13. // Files will be served at http://localhost:9999/files/file.png
  14. { base: 'http://127.0.0.1:9999/', prefix: 'files/'}
  15. ],
  16. // Port on which to run the server
  17. port: 9999,
  18. // Uploads config
  19. uploads: {
  20. // Folder where images should be stored
  21. folder: 'uploads',
  22. // Max file size allowed
  23. maxSize: '512MB',
  24. // The length of the random generated name for the uploaded files
  25. fileLength: 32,
  26. },
  27. // Folder where to store logs
  28. logsFolder: 'logs',
  29. // The following values shouldn't be touched
  30. database: {
  31. client: 'sqlite3',
  32. connection: {
  33. filename: './database/db'
  34. },
  35. useNullAsDefault: true
  36. }
  37. }