mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
Add help in conf file regarding SMTP
This commit is contained in:
parent
0c985c5a03
commit
6401417d6c
@ -1,3 +1,5 @@
|
|||||||
|
# /!\ YOU SHOULD NOT UPDATE THIS FILE, USE production.yaml instead /!\ #
|
||||||
|
|
||||||
listen:
|
listen:
|
||||||
hostname: '127.0.0.1'
|
hostname: '127.0.0.1'
|
||||||
port: 9000
|
port: 9000
|
||||||
@ -60,7 +62,7 @@ admin:
|
|||||||
signup:
|
signup:
|
||||||
enabled: false
|
enabled: false
|
||||||
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
||||||
filters:
|
filters:
|
||||||
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
||||||
whitelist: []
|
whitelist: []
|
||||||
blacklist: []
|
blacklist: []
|
||||||
|
@ -32,10 +32,10 @@ redis:
|
|||||||
# SMTP server to send emails
|
# SMTP server to send emails
|
||||||
smtp:
|
smtp:
|
||||||
hostname: null
|
hostname: null
|
||||||
port: 465
|
port: 465 # If you use StartTLS: 587
|
||||||
username: null
|
username: null
|
||||||
password: null
|
password: null
|
||||||
tls: true
|
tls: true # If you use StartTLS: false
|
||||||
disable_starttls: false
|
disable_starttls: false
|
||||||
ca_file: null # Used for self signed certificates
|
ca_file: null # Used for self signed certificates
|
||||||
from_address: 'admin@example.com'
|
from_address: 'admin@example.com'
|
||||||
@ -76,7 +76,7 @@ admin:
|
|||||||
signup:
|
signup:
|
||||||
enabled: false
|
enabled: false
|
||||||
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
||||||
filters:
|
filters:
|
||||||
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
||||||
whitelist: []
|
whitelist: []
|
||||||
blacklist: []
|
blacklist: []
|
||||||
|
@ -32,6 +32,8 @@ services:
|
|||||||
PEERTUBE_SIGNUP_ENABLED: "true"
|
PEERTUBE_SIGNUP_ENABLED: "true"
|
||||||
PEERTUBE_TRANSCODING_ENABLED: "true"
|
PEERTUBE_TRANSCODING_ENABLED: "true"
|
||||||
PEERTUBE_REDIS_HOSTNAME: redis
|
PEERTUBE_REDIS_HOSTNAME: redis
|
||||||
|
PEERTUBE_SMTP_USERNAME: null
|
||||||
|
PEERTUBE_SMTP_PASSWORD: null
|
||||||
PEERTUBE_SMTP_HOSTNAME: null
|
PEERTUBE_SMTP_HOSTNAME: null
|
||||||
PEERTUBE_SMTP_PORT: 25
|
PEERTUBE_SMTP_PORT: 25
|
||||||
PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld
|
PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld
|
||||||
|
Loading…
Reference in New Issue
Block a user