-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.yaml
34 lines (29 loc) · 981 Bytes
/
defaults.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# The host to listen on.
host: 0.0.0.0
# The port to listen on.
port: 3000
# The URL to redirect to when trying to hit index page.
homeRedirect: 'https://www.probo.ci'
# The directory in which to store the LevelDB database.
databasePlugin: LevelDB
databaseConfig:
databaseDataDirectory: db
fileStoragePlugin: LocalFiles
fileStorageConfig:
# The directory in which to store uploaded file assets.
fileDataDirectory: files
# Determines the cipher used to encrypt the assets.
# See https://www.openssl.org/docs/manmaster/apps/ciphers.html for options.
encryptionCipher: 'aes-256-cbc'
encryptionPassword: SECRET
recipheredOutputDir: null
# API tokens for creating all routes except asset upload (disabled by default)
tokens: null
uploadsPaused: false
## If using S3 use this template for config settings.
#
# fileStoragePlugin: AwsS3Storage
# fileStorageConfig:
# awsAccessKeyId: [KEY ID FOR BUCKET]
# awsSecretAccessKey: [BUCKET SECRET KEY]
# awsBucket: [BUCKET NAME]