config.sample.js 724 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. module.exports = {
  2. // Port on which to run the server
  3. port: 9999,
  4. // Upload restrictions
  5. privacy: {
  6. // Is the service public? If so, anyone with the URL can upload files
  7. public: false,
  8. // If not, which IP's should be able to access?
  9. IPs: [
  10. '::1',
  11. '127.0.0.1'
  12. ]
  13. },
  14. // Uploads config
  15. uploads: {
  16. // Folder where images should be stored
  17. folder: 'uploads',
  18. // Max file size allowed
  19. maxsize: '512MB'
  20. },
  21. // Folder where to store logs
  22. logsFolder: 'logs',
  23. // The length of the random generated name for the uploaded files
  24. fileLength: 4,
  25. // The following values shouldn't be touched
  26. database: {
  27. client: 'sqlite3',
  28. connection: {
  29. filename: './db'
  30. },
  31. useNullAsDefault: true
  32. }
  33. }