2017-01-13 08:48:18 +01:00
|
|
|
module.exports = {
|
|
|
|
|
2017-01-19 00:37:53 +01:00
|
|
|
/*
|
|
|
|
If set to true the user will need to specify the auto-generated token
|
|
|
|
on each API call, meaning random strangers wont be able to use the service
|
|
|
|
unless they have the token loli-safe provides you with.
|
|
|
|
If it's set to false, then upload will be public for anyone to use.
|
|
|
|
*/
|
2017-01-17 04:37:54 +01:00
|
|
|
private: true,
|
2017-10-04 00:48:26 +02:00
|
|
|
|
2017-01-30 09:10:13 +01:00
|
|
|
// If true, users will be able to create accounts and access their uploaded files
|
|
|
|
enableUserAccounts: true,
|
2017-01-19 00:37:53 +01:00
|
|
|
|
2017-10-04 00:48:26 +02:00
|
|
|
/*
|
|
|
|
Here you can decide if you want lolisafe to serve the files or if you prefer doing so via nginx.
|
|
|
|
The main difference between the two is the ease of use and the chance of analytics in the future.
|
|
|
|
If you set it to `true`, the uploaded files will be located after the host like:
|
|
|
|
https://lolisafe.moe/yourFile.jpg
|
2017-01-19 01:35:31 +01:00
|
|
|
|
2017-10-04 00:48:26 +02:00
|
|
|
If you set it to `false`, you need to specify the domain in the setting right below `serveFilesWithNode`
|
|
|
|
and make nginx directly serve whatever folder it is you are serving your downloads in. This also gives
|
|
|
|
you the ability to serve them, for example, like this:
|
|
|
|
https://files.lolisafe.moe/yourFile.jpg
|
2017-01-19 04:31:01 +01:00
|
|
|
|
2017-10-04 00:48:26 +02:00
|
|
|
So ultimately, it's up to you.
|
|
|
|
*/
|
|
|
|
serveFilesWithNode: false,
|
|
|
|
domain: '',
|
2017-01-15 00:47:50 +01:00
|
|
|
|
2017-01-13 08:48:18 +01:00
|
|
|
// Port on which to run the server
|
|
|
|
port: 9999,
|
|
|
|
|
2017-02-06 04:06:33 +01:00
|
|
|
// Pages to process for the frontend
|
|
|
|
pages: ['home', 'auth', 'dashboard', 'faq'],
|
|
|
|
|
2017-03-27 23:07:00 +02:00
|
|
|
// Add file extensions here which should be blocked
|
|
|
|
blockedExtensions: [
|
|
|
|
'.exe',
|
|
|
|
'.bat',
|
|
|
|
'.cmd',
|
2017-03-29 22:54:45 +02:00
|
|
|
'.msi',
|
|
|
|
'.sh'
|
2017-03-27 23:07:00 +02:00
|
|
|
],
|
|
|
|
|
2017-01-13 08:48:18 +01:00
|
|
|
// Uploads config
|
|
|
|
uploads: {
|
|
|
|
|
|
|
|
// Folder where images should be stored
|
|
|
|
folder: 'uploads',
|
|
|
|
|
2017-10-04 00:48:26 +02:00
|
|
|
/*
|
|
|
|
Max file size allowed. Needs to be in MB
|
|
|
|
Note: When maxSize is greater than 1 MiB, you must set the client_max_body_size to the same as maxSize.
|
|
|
|
*/
|
2017-01-19 00:37:53 +01:00
|
|
|
maxSize: '512MB',
|
2017-01-14 09:50:18 +01:00
|
|
|
|
|
|
|
// The length of the random generated name for the uploaded files
|
2017-01-16 09:22:19 +01:00
|
|
|
fileLength: 32,
|
2017-01-22 22:01:39 +01:00
|
|
|
|
2017-10-04 00:48:26 +02:00
|
|
|
/*
|
|
|
|
NOTE: Thumbnails are only for the admin panel and they require you
|
|
|
|
to install a separate binary called graphicsmagick (http://www.graphicsmagick.org)
|
|
|
|
for images and ffmpeg (https://ffmpeg.org/) for video files
|
|
|
|
*/
|
2017-01-22 22:01:39 +01:00
|
|
|
generateThumbnails: false
|
2017-01-13 08:48:18 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Folder where to store logs
|
|
|
|
logsFolder: 'logs',
|
|
|
|
|
|
|
|
// The following values shouldn't be touched
|
|
|
|
database: {
|
|
|
|
client: 'sqlite3',
|
2017-10-04 00:48:26 +02:00
|
|
|
connection: { filename: './database/db' },
|
2017-01-13 08:48:18 +01:00
|
|
|
useNullAsDefault: true
|
|
|
|
}
|
2017-01-14 20:23:54 +01:00
|
|
|
}
|