config.sample.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. /*
  12. You need to specify the base domain where loli-self is running
  13. and how should it resolve the URL for uploaded files. For example:
  14. */
  15. // Files will be served at http(s)://i.kanacchi.moe/Fxt0.png
  16. { host: 'kanacchi.moe', resolve: 'https://i.kanacchi.moe'},
  17. // Files will be served at https://my.kanacchi.moe/loli-self/files/Fxt0.png
  18. { host: 'kanacchi.moe', resolve: 'https://my.kanacchi.moe/loli-self/files' }
  19. ],
  20. // Port on which to run the server
  21. port: 9999,
  22. // Uploads config
  23. uploads: {
  24. // Folder where images should be stored
  25. folder: 'uploads',
  26. // Max file size allowed. Needs to be in MB
  27. maxSize: '512MB',
  28. // The length of the random generated name for the uploaded files
  29. fileLength: 32,
  30. },
  31. // Folder where to store logs
  32. logsFolder: 'logs',
  33. // The following values shouldn't be touched
  34. database: {
  35. client: 'sqlite3',
  36. connection: {
  37. filename: './database/db'
  38. },
  39. useNullAsDefault: true
  40. }
  41. }