-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env
135 lines (101 loc) · 4.68 KB
/
.env
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# *****************************************************************************
# Traefik
# *****************************************************************************
# Public DNS name suffix that is used to reach the services. For each service published via reverse proxy a subdomain with this suffix is assigned.
# DEFAULT_DOMAIN_SUFFIX='my-domain.ch'
# Public domain name for Traefik.
# TRAEFIK_DOMAIN='traefik.my-domain.ch'
# Email address used when issuing new SSL certificates with Let's Encrypt.
# TRAEFIK_ACME_EMAIL='[email protected]'
# *****************************************************************************
# lldap
# *****************************************************************************
# Public domain name for lldap.
# LLDAP_DOMAIN='lldap.my-domain.ch'
# Initial password of the lldap admin user (the username is always admin).
# LLDAP_INITIAL_ADMIN_PASSWORD='*****'
# LLDAP_JWT_SECRET='*****'
# *****************************************************************************
# Dozzle
# *****************************************************************************
# Public domain name for Dozzle.
# DOZZLE_DOMAIN='dozzle.my-domain.ch'
# *****************************************************************************
# Portainer
# *****************************************************************************
# Public domain name for Portainer.
# PORTAINER_DOMAIN='portainer.my-domain.ch'
# *****************************************************************************
# Mastodon
# *****************************************************************************
# Public domain name for Mastodon.
# MASTODON_DOMAIN='mastodon.my-domain.ch'
# Username and email of the Mastodon admin user.
# MASTODON_ADMIN_USERNAME='admin'
# MASTODON_ADMIN_EMAIL='[email protected]'
# Password of the Mastodon PostgreSQL database.
# MASTODON_POSTGRES_PASSWORD='*****'
# MASTODON_SECRET_KEY_BASE='*****'
# MASTODON_OTP_SECRET='*****'
# Keypair used for the web push protocol to send push notifications
# generate with `docker run --rm tootsuite/mastodon /bin/sh -c 'bundle exec rake mastodon:webpush:generate_vapid_key'`
# MASTODON_VAPID_PRIVATE_KEY='*****'
# MASTODON_VAPID_PUBLIC_KEY='*****'
# SMTP settings used by Mastodon to send emails.
# MASTODON_SMTP_SERVER='mail.my-domain.ch'
# MASTODON_SMTP_PORT='587'
# MASTODON_SMTP_LOGIN='[email protected]'
# MASTODON_SMTP_PASSWORD='*****'
# MASTODON_SMTP_FROM_ADDRESS='[email protected]'
# Used to serve user-uploaded files from a S3 compatible storage provider
# MASTODON_STATIC_DOMAIN='mastodon-static.my-domain.ch'
MASTODON_S3_ENABLED='false'
MASTODON_S3_PROTOCOL='https'
# MASTODON_S3_REGION='us-east-1'
# MASTODON_S3_ENDPOINT='https://name.of.s3.endpoint'
# MASTODON_S3_HOSTNAME='name.of.s3.endpoint'
# MASTODON_S3_BUCKET='mastodon'
# MASTODON_S3_ACCESS_KEY_ID='*****'
# MASTODON_S3_SECRET_ACCESS_KEY='*****'
# MASTODON_S3_PATH_PREFIX=''
# *****************************************************************************
# Authelia
# *****************************************************************************
# Public domain name for Authelia.
# AUTHELIA_DOMAIN='authelia.my-domain.ch'
# SMTP settings used by Authelia to send emails.
# AUTHELIA_SMTP_SERVER='mail.my-domain.ch'
# AUTHELIA_SMTP_PORT='587'
# AUTHELIA_SMTP_LOGIN='[email protected]'
# AUTHELIA_SMTP_FROM_ADDRESS='[email protected]'
# *****************************************************************************
# Leantime
# *****************************************************************************
# Public domain name for Leantime.
# LEANTIME_DOMAIN='leantime.my-domain.ch'
# Password of the Leantime MySQL database.
# LEANTIME_MYSQL_PASSWORD='*****'
# *****************************************************************************
# OpenProject
# *****************************************************************************
# Public domain name for OpenProject.
# OPENPROJECT_DOMAIN='openproject.my-domain.ch'
# Password of the OpenProject PostgreSQL database.
# OPENPROJECT_POSTGRES_PASSWORD='*****'
# OPENPROJECT_SECRET_KEY_BASE='*****'
# *****************************************************************************
# Redmine
# *****************************************************************************
# Public domain name for Redmine.
# REDMINE_DOMAIN='redmine.my-domain.ch'
# Username, email and password of the Redmine admin user.
# REDMINE_ADMIN_USERNAME='admin'
# REDMINE_ADMIN_EMAIL='[email protected]'
# REDMINE_ADMIN_PASSWORD='*****'
# Password of the Redmine PostgreSQL database.
# REDMINE_POSTGRES_PASSWORD='*****'
# SMTP settings used by Redmine to send emails.
# REDMINE_SMTP_SERVER='mail.my-domain.ch'
# REDMINE_SMTP_PORT='587'
# REDMINE_SMTP_LOGIN='[email protected]'
# REDMINE_SMTP_PASSWORD='*****'