update config file

This commit is contained in:
Dryusdan 2018-03-04 18:50:14 +01:00
parent d1f7877150
commit ec47aff065
1 changed files with 27 additions and 0 deletions

View File

@ -15,6 +15,20 @@ database:
username: '<database_username>' username: '<database_username>'
password: '<database_password>' password: '<database_password>'
redis:
hostname: 'redis_hostname'
port: 'redis_port'
auth: null
smtp:
hostname: '<smtp_hostname>'
port: <smtp_port>
username: '<smtp_username>'
password: '<smtp_password>'
tls: <smtp_tls>
ca_file: null # Used for self signed certificates
from_address: '<from_address>'
# From the project root directory # From the project root directory
storage: storage:
avatars: 'avatars/' avatars: 'avatars/'
@ -25,6 +39,10 @@ storage:
thumbnails: 'thumbnails/' thumbnails: 'thumbnails/'
torrents: 'torrents/' torrents: 'torrents/'
log:
level: 'info' # debug/info/warning/error
cache: cache:
previews: previews:
size: <cache_size> size: <cache_size>
@ -53,3 +71,12 @@ transcoding:
720p: <resolution_720> 720p: <resolution_720>
1080p: <resolution_1080> 1080p: <resolution_1080>
instance:
name: '<instance_name>'
description: '' # Support markdown
terms: '' # Support markdown
default_client_route: '/videos/trending'
customizations:
javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime