v3.0.0/config.sample.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

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.
2017-01-14 09:50:18 +01:00
2017-01-19 00:37:53 +01:00
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-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
// The registered domain where you will be serving the app. Use IP if none.
domains: [
/*
You need to specify the base domain where loli-self is running
and how should it resolve the URL for uploaded files. For example:
*/
2017-01-19 00:37:53 +01:00
// Files will be served at http(s)://i.kanacchi.moe/Fxt0.png
{ host: 'kanacchi.moe', resolve: 'https://i.kanacchi.moe'},
2017-01-19 01:35:31 +01:00
// Files will be served at https://my.kanacchi.moe/loli-self/files/Fxt0.png
{ host: 'kanacchi.moe', resolve: 'https://my.kanacchi.moe/loli-self/files' }
2017-01-19 04:31:01 +01:00
2017-01-19 00:37:53 +01:00
],
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,
// Pages to process for the frontend
pages: ['home', 'auth', 'dashboard', 'faq'],
2017-01-13 08:48:18 +01:00
// Uploads config
uploads: {
// Folder where images should be stored
folder: 'uploads',
2017-01-19 04:31:01 +01:00
// Max file size allowed. Needs to be in MB
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
fileLength: 32,
2017-01-22 22:01:39 +01: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',
connection: {
2017-01-14 09:50:18 +01:00
filename: './database/db'
2017-01-13 08:48:18 +01:00
},
useNullAsDefault: true
}
2017-01-14 20:23:54 +01:00
}