aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/config/custom-environment-variables.yaml
blob: cfc30632cbc2020abeef37239123aa77790ba90a (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
webserver:
  hostname: "PEERTUBE_WEBSERVER_HOSTNAME"
  port:
    __name: "PEERTUBE_WEBSERVER_PORT"
    __format: "json"
  https:
    __name: "PEERTUBE_WEBSERVER_HTTPS"
    __format: "json"

trust_proxy:
  __name: "PEERTUBE_TRUST_PROXY"
  __format: "json"

database:
  hostname: "PEERTUBE_DB_HOSTNAME"
  port:
    __name: "PEERTUBE_DB_PORT"
    __format: "json"
  suffix: "PEERTUBE_DB_SUFFIX"
  username: "PEERTUBE_DB_USERNAME"
  password: "PEERTUBE_DB_PASSWORD"

redis:
  hostname: "PEERTUBE_REDIS_HOSTNAME"
  port:
    __name: "PEERTUBE_REDIS_PORT"
    __format: "json"
  auth: "PEERTUBE_REDIS_AUTH"

smtp:
  hostname: "PEERTUBE_SMTP_HOSTNAME"
  port:
    __name: "PEERTUBE_SMTP_PORT"
    __format: "json"
  username: "PEERTUBE_SMTP_USERNAME"
  password: "PEERTUBE_SMTP_PASSWORD"
  tls:
    __name: "PEERTUBE_SMTP_TLS"
    __format: "json"
  disable_starttls:
    __name: "PEERTUBE_SMTP_DISABLE_STARTTLS"
    __format: "json"
  from_address: "PEERTUBE_SMTP_FROM"

user:
  video_quota:
    __name: "PEERTUBE_USER_VIDEO_QUOTA"
    __format: "json"

admin:
  email: "PEERTUBE_ADMIN_EMAIL"

signup:
  enabled:
    __name: "PEERTUBE_SIGNUP_ENABLED"
    __format: "json"
  limit:
    __name: "PEERTUBE_SIGNUP_LIMIT"
    __format: "json"

search:
  remote_uri:
    users:
      __name: "PEERTUBE_SEARCH_REMOTEURI_USERS"
      __format: "json"
    anonymous:
      __name: "PEERTUBE_SEARCH_REMOTEURI_ANONYMOUS"
      __format: "json"

import:
  videos:
    http:
      enabled:
        __name: "PEERTUBE_IMPORT_VIDEOS_HTTP"
        __format: "json"
    torrent:
      enabled:
        __name: "PEERTUBE_IMPORT_VIDEOS_TORRENT"
        __format: "json"

transcoding:
  enabled:
    __name: "PEERTUBE_TRANSCODING_ENABLED"
    __format: "json"
  threads:
    __name: "PEERTUBE_TRANSCODING_THREADS"
    __format: "json"
  resolutions:
    240p:
      __name: "PEERTUBE_TRANSCODING_240P"
      __format: "json"
    360p:
      __name: "PEERTUBE_TRANSCODING_360P"
      __format: "json"
    480p:
      __name: "PEERTUBE_TRANSCODING_480P"
      __format: "json"
    720p:
      __name: "PEERTUBE_TRANSCODING_720P"
      __format: "json"
    1080:
      __name: "PEERTUBE_TRANSCODING_1080P"
      __format: "json"
    

instance:
  name: "PEERTUBE_INSTANCE_NAME"
  description: "PEERTUBE_INSTANCE_DESCRIPTION"
  terms: "PEERTUBE_INSTANCE_TERMS"