diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/default.yaml | 11 | ||||
-rw-r--r-- | config/production.yaml.example | 9 |
2 files changed, 19 insertions, 1 deletions
diff --git a/config/default.yaml b/config/default.yaml index fd04b5ce6..691c9e00b 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -19,6 +19,15 @@ redis: | |||
19 | port: 6379 | 19 | port: 6379 |
20 | auth: null | 20 | auth: null |
21 | 21 | ||
22 | smtp: | ||
23 | hostname: null | ||
24 | port: 465 | ||
25 | username: null | ||
26 | password: null | ||
27 | tls: true | ||
28 | ca_file: null # Used for self signed certificates | ||
29 | from_address: 'admin@example.com' | ||
30 | |||
22 | # From the project root directory | 31 | # From the project root directory |
23 | storage: | 32 | storage: |
24 | avatars: 'storage/avatars/' | 33 | avatars: 'storage/avatars/' |
@@ -37,7 +46,7 @@ cache: | |||
37 | size: 1 # Max number of previews you want to cache | 46 | size: 1 # Max number of previews you want to cache |
38 | 47 | ||
39 | admin: | 48 | admin: |
40 | email: 'admin@example.com' | 49 | email: 'admin@example.com' # Your personal email as administrator |
41 | 50 | ||
42 | signup: | 51 | signup: |
43 | enabled: false | 52 | enabled: false |
diff --git a/config/production.yaml.example b/config/production.yaml.example index a2b332983..04354b75d 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -20,6 +20,15 @@ redis: | |||
20 | port: 6379 | 20 | port: 6379 |
21 | auth: null | 21 | auth: null |
22 | 22 | ||
23 | smtp: | ||
24 | hostname: null | ||
25 | port: 465 | ||
26 | username: null | ||
27 | password: null | ||
28 | tls: true | ||
29 | ca_file: null # Used for self signed certificates | ||
30 | from_address: 'admin@example.com' | ||
31 | |||
23 | # From the project root directory | 32 | # From the project root directory |
24 | storage: | 33 | storage: |
25 | avatars: '/var/www/peertube/storage/avatars/' | 34 | avatars: '/var/www/peertube/storage/avatars/' |